lix-website/themes/lix/assets/bootstrap/node_modules/typed-array-byte-length/index.d.ts
2024-04-26 22:49:34 -06:00

17 lines
385 B
TypeScript

type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;
declare function typedArrayByteLength(value: TypedArray): number;
declare function typedArrayByteLength(value: unknown): false;
export = typedArrayByteLength;