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 | |
---|
1 | type TypedArray =
|
---|
2 | | Int8Array
|
---|
3 | | Uint8Array
|
---|
4 | | Uint8ClampedArray
|
---|
5 | | Int16Array
|
---|
6 | | Uint16Array
|
---|
7 | | Int32Array
|
---|
8 | | Uint32Array
|
---|
9 | | Float32Array
|
---|
10 | | Float64Array
|
---|
11 | | BigInt64Array
|
---|
12 | | BigUint64Array;
|
---|
13 |
|
---|
14 | declare function typedArrayByteOffset(value: TypedArray): number;
|
---|
15 | declare function typedArrayByteOffset(value: unknown): false;
|
---|
16 |
|
---|
17 | export = typedArrayByteOffset;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.