UNPKG

inspector-api

Version:

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

14 lines (13 loc) 378 B
/// <reference types="node" /> export = Inspector; declare class Inspector { constructor(config?: {}); session: inspector.Session; profiler: Profiler; heap: Heap; getCurrentSession(): inspector.Session; destroy(): Promise<void>; } import inspector = require("inspector"); import Profiler = require("./src/profiler"); import Heap = require("./src/heap");