13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
export interface ConfigBinding {
|
|
isDebugBuild: boolean;
|
|
hasOpenSSL: boolean;
|
|
fipsMode: boolean;
|
|
hasIntl: boolean;
|
|
hasTracing: boolean;
|
|
hasNodeOptions: boolean;
|
|
hasInspector: boolean;
|
|
noBrowserGlobals: boolean;
|
|
bits: number;
|
|
hasDtrace: boolean;
|
|
}
|