mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
|
/**
|
||
|
* The `internalBinding('debug')` binding provides access to internal debugging
|
||
|
* utilities. They are only available when Node.js is built with the `--debug`
|
||
|
* or `--debug-node` compile-time flags.
|
||
|
*/
|
||
|
export interface DebugBinding {
|
||
|
getV8FastApiCallCount(name: string): number;
|
||
|
isEven(value: number): boolean;
|
||
|
isOdd(value: number): boolean;
|
||
|
}
|