source: imaps-frontend/node_modules/is-typed-array/index.d.ts

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 295 bytes
Line 
1type TypedArray =
2 | Int8Array
3 | Uint8Array
4 | Uint8ClampedArray
5 | Int16Array
6 | Uint16Array
7 | Int32Array
8 | Uint32Array
9 | Float32Array
10 | Float64Array
11 | BigInt64Array
12 | BigUint64Array;
13
14declare function isTypedArray(value: unknown): value is TypedArray;
15
16export = isTypedArray;
Note: See TracBrowser for help on using the repository browser.