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 173cfa4 commit b6f6827Copy full SHA for b6f6827
typings/globals.d.ts
@@ -56,6 +56,19 @@ type InternalBindingKeys = keyof InternalBindingMap;
56
declare function internalBinding<T extends InternalBindingKeys>(binding: T): InternalBindingMap[T]
57
58
declare global {
59
+ type TypedArray =
60
+ | Uint8Array
61
+ | Uint8ClampedArray
62
+ | Uint16Array
63
+ | Uint32Array
64
+ | Int8Array
65
+ | Int16Array
66
+ | Int32Array
67
+ | Float32Array
68
+ | Float64Array
69
+ | BigUint64Array
70
+ | BigInt64Array;
71
+
72
namespace NodeJS {
73
interface Global {
74
internalBinding<T extends InternalBindingKeys>(binding: T): InternalBindingMap[T]
0 commit comments