d2a0ff6762e4b819290f72286fc32c44382391b52e9934981a5f7aab3ab2e86626567c64584b362feb21a8e18d8b614ce957dde321ecd8545bfdbe78cb900f 259 B

12345678
  1. type AllPossibleTypedArrays = typeof import('possible-typed-array-names');
  2. declare function availableTypedArrays():
  3. | []
  4. | AllPossibleTypedArrays
  5. | Omit<AllPossibleTypedArrays, 'BigInt64Array' | 'BigUint64Array'>;
  6. export = availableTypedArrays;