Welcome to mirror list, hosted at ThFree Co, Russian Federation.

globals.d.ts « typings - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 182284aa342718cb6453670da6f68ac35661baeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
declare type TypedArray =
  | Uint8Array
  | Uint8ClampedArray
  | Uint16Array
  | Uint32Array
  | Int8Array
  | Int16Array
  | Int32Array
  | Float32Array
  | Float64Array
  | BigUint64Array
  | BigInt64Array;