node/typings/internalBinding/config.d.ts
Antoine du Hamel 14f02fc2f7
lib,src,test: fix tests without SQLite
PR-URL: https://github.com/nodejs/node/pull/60906
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2025-12-11 23:04:24 +01:00

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;
}