2acea8da764f58f3fae5dc765a9a85e91b9a6b85b3f511e979c94fcdcb6ab74e2cdcd691fbe761ae6c332b5e178d122e04b9b1489ee3981df513da9890db8a 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;