source: imaps-frontend/node_modules/typed-array-byte-offset/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: 353 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 typedArrayByteOffset(value: TypedArray): number;
15declare function typedArrayByteOffset(value: unknown): false;
16
17export = typedArrayByteOffset;
Note: See TracBrowser for help on using the repository browser.