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 c78d708 commit 90aa96dCopy full SHA for 90aa96d
11 files changed
typings/globals.d.ts
@@ -1 +1,12 @@
1
-declare type TypedArray = Uint16Array | Uint32Array | Uint8Array | Uint8ClampedArray | Int16Array | Int32Array | Int8Array | BigInt64Array | Float32Array | Float64Array | BigUint64Array;
+declare type TypedArray =
2
+ | Uint8Array
3
+ | Uint8ClampedArray
4
+ | Uint16Array
5
+ | Uint32Array
6
+ | Int8Array
7
+ | Int16Array
8
+ | Int32Array
9
+ | Float32Array
10
+ | Float64Array
11
+ | BigUint64Array
12
+ | BigInt64Array;
typings/internalBinding/config.d.ts
@@ -1,12 +1,12 @@
declare function InternalBinding(binding: 'config'): {
- isDebugBuild: boolean,
- hasOpenSSL: boolean,
- fipsMode: boolean,
- hasIntl: boolean,
- hasTracing: boolean,
- hasNodeOptions: boolean,
- hasInspector: boolean,
- noBrowserGlobals: boolean,
- bits: number,
- hasDtrace: boolean
-}
+ isDebugBuild: boolean;
+ hasOpenSSL: boolean;
+ fipsMode: boolean;
+ hasIntl: boolean;
+ hasTracing: boolean;
+ hasNodeOptions: boolean;
+ hasInspector: boolean;
+ noBrowserGlobals: boolean;
+ bits: number;
+ hasDtrace: boolean;
+};
0 commit comments