astro-ghostcms/.pnpm-store/v3/files/4f/f271835d777d0e94b53886a1644...

17 lines
421 B
Plaintext

type AllPossibleTypedArrays = [
'BigInt64Array',
'BigUint64Array',
'Float32Array',
'Float64Array',
'Int16Array',
'Int32Array',
'Int8Array',
'Uint16Array',
'Uint32Array',
'Uint8Array',
'Uint8ClampedArray',
];
declare function availableTypedArrays(): [] | AllPossibleTypedArrays | Omit<AllPossibleTypedArrays, 'BigInt64Array' | 'BigUint64Array'>;
export = availableTypedArrays;