astro-ghostcms/.pnpm-store/v3/files/62/1316f5d5018702d66bb752e6fe8...

16 lines
337 B
Plaintext

type TypedArrayName =
| 'Int8Array'
| 'Uint8Array'
| 'Uint8ClampedArray'
| 'Int16Array'
| 'Uint16Array'
| 'Int32Array'
| 'Uint32Array'
| 'Float32Array'
| 'Float64Array'
| 'BigInt64Array'
| 'BigUint64Array';
declare function whichTypedArray(value: unknown): TypedArrayName | false | null;
export = whichTypedArray;