mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 07:53:06 +01:00
b66a75a3a4
PR-URL: https://github.com/nodejs/node/pull/40411 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
declare type TypedArray =
|
|
| Uint8Array
|
|
| Uint8ClampedArray
|
|
| Uint16Array
|
|
| Uint32Array
|
|
| Int8Array
|
|
| Int16Array
|
|
| Int32Array
|
|
| Float32Array
|
|
| Float64Array
|
|
| BigUint64Array
|
|
| BigInt64Array;
|