UNPKG

@nitedani/inspector-api

Version:

A simple node module to access V8 inspector + some tools to export and read the data.

14 lines (13 loc) 363 B
/// <reference types="node" /> import { Session } from "inspector"; import Profiler from "./profiler"; import Heap from "./heap"; export declare class Inspector { session: Session | null; profiler: Profiler; heap: Heap; constructor(); getCurrentSession(): Session | null; destroy(): Promise<void>; } export default Inspector;