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 1f7f6df commit ad5cfccCopy full SHA for ad5cfcc
2 files changed
typings/internalBinding/config.d.ts
@@ -1,12 +1,15 @@
1
export interface ConfigBinding {
2
isDebugBuild: boolean;
3
+ openSSLIsBoringSSL: boolean;
4
hasOpenSSL: boolean;
5
fipsMode: boolean;
6
hasIntl: boolean;
7
+ hasSmallICU: boolean;
8
hasTracing: boolean;
9
hasNodeOptions: boolean;
10
hasInspector: boolean;
11
noBrowserGlobals: boolean;
12
bits: number;
13
hasDtrace: boolean;
14
+ getDefaultLocale(): string;
15
}
typings/internalBinding/os.d.ts
@@ -22,4 +22,5 @@ export interface OSBinding {
22
getPriority(pid: number, ctx: InternalOSBinding.OSContext): number | undefined;
23
getOSInformation(ctx: InternalOSBinding.OSContext): [sysname: string, version: string, release: string];
24
isBigEndian: boolean;
25
+ getAvailableParallelism(): number;
26
0 commit comments