mirror of https://github.com/nodejs/node.git
16 lines
351 B
TypeScript
16 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;
|
|
noBrowserGlobals: boolean;
|
|
bits: number;
|
|
hasDtrace: boolean;
|
|
getDefaultLocale(): string;
|
|
}
|