index.d.ts 320 B

12345678910111213141516
  1. type TypedArray =
  2. | Int8Array
  3. | Uint8Array
  4. | Int16Array
  5. | Uint16Array
  6. | Int32Array
  7. | Uint32Array
  8. | Float32Array
  9. | Float64Array
  10. | BigInt64Array
  11. | BigUint64Array;
  12. declare function typedArrayLength(value: TypedArray): number;
  13. declare function typedArrayLength(value: unknown): false;
  14. export = typedArrayLength;