index.d.ts 283 B

12345678910
  1. import type { TypedArray } from 'is-typed-array';
  2. declare namespace typedArrayByteLength {
  3. export type { TypedArray };
  4. }
  5. declare function typedArrayByteLength(value: TypedArray): number;
  6. declare function typedArrayByteLength(value: unknown): false;
  7. export = typedArrayByteLength;