mirror of https://github.com/nodejs/node.git
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
|
declare function InternalBinding(binding: 'config'): {
|
||
|
isDebugBuild: boolean,
|
||
|
hasOpenSSL: boolean,
|
||
|
fipsMode: boolean,
|
||
|
hasIntl: boolean,
|
||
|
hasTracing: boolean,
|
||
|
hasNodeOptions: boolean,
|
||
|
hasInspector: boolean,
|
||
|
noBrowserGlobals: boolean,
|
||
|
bits: number,
|
||
|
hasDtrace: boolean
|
||
|
}
|