astro-ghostcms/.pnpm-store/v3/files/08/8945d883e7360966dc44b9ce7c0...

16 lines
295 B
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
type TypedArray =
| Int8Array
| Uint8Array
| Uint8ClampedArray
| Int16Array
| Uint16Array
| Int32Array
| Uint32Array
| Float32Array
| Float64Array
| BigInt64Array
| BigUint64Array;
declare function isTypedArray(value: unknown): value is TypedArray;
export = isTypedArray;