UNPKG

@oaklean/profiler-core

Version:

Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec

24 lines (23 loc) 657 B
import inspector from 'node:inspector'; export declare class InspectorSessionHelper { private static _session; private static _connected; private static _destroyed; static connect(): void; /** * Disconnects the inspector session. */ static disconnect(): void; /** * Returns whether the inspector session is connected. */ static get connected(): boolean; /** * Returns whether the inspector session is destroyed. */ static get destroyed(): boolean; /** * Returns the singleton inspector session, connecting it if necessary. */ static get session(): inspector.Session; }