Skip to content

Commit ad5cfcc

Browse files
wlgh1553targos
authored andcommitted
typings: add missing properties in ConfigBinding
PR-URL: #59585 Reviewed-By: Daeyeon Jeong <[email protected]>
1 parent 1f7f6df commit ad5cfcc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
export interface ConfigBinding {
22
isDebugBuild: boolean;
3+
openSSLIsBoringSSL: boolean;
34
hasOpenSSL: boolean;
45
fipsMode: boolean;
56
hasIntl: boolean;
7+
hasSmallICU: boolean;
68
hasTracing: boolean;
79
hasNodeOptions: boolean;
810
hasInspector: boolean;
911
noBrowserGlobals: boolean;
1012
bits: number;
1113
hasDtrace: boolean;
14+
getDefaultLocale(): string;
1215
}

typings/internalBinding/os.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ export interface OSBinding {
2222
getPriority(pid: number, ctx: InternalOSBinding.OSContext): number | undefined;
2323
getOSInformation(ctx: InternalOSBinding.OSContext): [sysname: string, version: string, release: string];
2424
isBigEndian: boolean;
25+
getAvailableParallelism(): number;
2526
}

0 commit comments

Comments
 (0)