index.d.ts 385 B

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