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

18 lines
353 B
TypeScript

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