We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81853b0 commit 4b57173Copy full SHA for 4b57173
index.d.ts
@@ -1,5 +1,3 @@
1
-import type { TypedArray } from 'is-typed-array';
2
-
3
/**
4
* Determines the type of the given collection, or returns false.
5
*
@@ -34,7 +32,18 @@ declare namespace whichTypedArray {
34
32
| 'BigInt64Array'
35
33
| 'BigUint64Array';
36
37
- export type { TypedArray };
+ export type TypedArray =
+ | Int8Array
+ | Uint8Array
38
+ | Uint8ClampedArray
39
+ | Int16Array
40
+ | Uint16Array
41
+ | Int32Array
42
+ | Uint32Array
43
+ | Float32Array
44
+ | Float64Array
45
+ | BigInt64Array
46
+ | BigUint64Array;
47
48
export type TypedArrayConstructor =
49
| Int8ArrayConstructor
0 commit comments