typings: add missing properties in ConfigBinding · nodejs/node@ad5cfcc

2 files changed

lines changed

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

}

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

}