We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a7a0b commit ca9a854Copy full SHA for ca9a854
typings/internalBinding/options.d.ts
@@ -20,6 +20,7 @@ declare function InternalBinding(binding: 'options'): {
20
kAllowedInEnvironment: 0;
21
kDisallowedInEnvironment: 1;
22
};
23
+ noGlobalSearchPaths: boolean;
24
shouldNotRegisterESMLoader: boolean;
25
types: {
26
kNoOp: 0;
typings/internalBinding/util.d.ts
@@ -44,4 +44,5 @@ declare function InternalBinding(binding: 'util'): {
44
shouldAbortOnUncaughtToggle: [shouldAbort: 0 | 1];
45
WeakReference: typeof InternalUtilBinding.WeakReference;
46
guessHandleType(fd: number): 'TCP' | 'TTY' | 'UDP' | 'FILE' | 'PIPE' | 'UNKNOWN';
47
+ toUSVString(str: string, start: number): string;
48
0 commit comments