mirror of https://github.com/nodejs/node.git
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;
|
|
}
|