• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1interface Int8ArrayConstructor {
2    new (): Int8Array;
3}
4
5interface Uint8ArrayConstructor {
6    new (): Uint8Array;
7}
8
9interface Uint8ClampedArrayConstructor {
10    new (): Uint8ClampedArray;
11}
12
13interface Int16ArrayConstructor {
14    new (): Int16Array;
15}
16
17interface Uint16ArrayConstructor {
18    new (): Uint16Array;
19}
20
21interface Int32ArrayConstructor {
22    new (): Int32Array;
23}
24
25interface Uint32ArrayConstructor {
26    new (): Uint32Array;
27}
28
29interface Float32ArrayConstructor {
30    new (): Float32Array;
31}
32
33interface Float64ArrayConstructor {
34    new (): Float64Array;
35}
36