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

16 lines
295 B
TypeScript

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