PR-URL: https://github.com/nodejs/node/pull/60906 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
export interface ConfigBinding {
|
|
isDebugBuild: boolean;
|
|
openSSLIsBoringSSL: boolean;
|
|
hasOpenSSL: boolean;
|
|
fipsMode: boolean;
|
|
hasIntl: boolean;
|
|
hasSmallICU: boolean;
|
|
hasTracing: boolean;
|
|
hasNodeOptions: boolean;
|
|
hasInspector: boolean;
|
|
hasSQLite: boolean;
|
|
noBrowserGlobals: boolean;
|
|
bits: number;
|
|
getDefaultLocale(): string;
|
|
}
|