index.d.ts 225 B

123456789101112131415
  1. declare const names: [
  2. 'Float32Array',
  3. 'Float64Array',
  4. 'Int8Array',
  5. 'Int16Array',
  6. 'Int32Array',
  7. 'Uint8Array',
  8. 'Uint8ClampedArray',
  9. 'Uint16Array',
  10. 'Uint32Array',
  11. 'BigInt64Array',
  12. 'BigUint64Array'
  13. ];
  14. export = names;