source: trip-planner-front/node_modules/type-fest/source/typed-array.d.ts@ 84d0fbb

Last change on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 363 bytes
Line 
1/**
2Matches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`.
3*/
4export type TypedArray =
5 | Int8Array
6 | Uint8Array
7 | Uint8ClampedArray
8 | Int16Array
9 | Uint16Array
10 | Int32Array
11 | Uint32Array
12 | Float32Array
13 | Float64Array
14 | BigInt64Array
15 | BigUint64Array;
Note: See TracBrowser for help on using the repository browser.