UNPKG

inspector-api

Version:

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

13 lines (12 loc) 314 B
export = Heap; declare class Heap { constructor(session: any, config: any, s3Client: any); s3Client: any; session: any; config: any; enable(): Promise<void>; disable(): Promise<void>; startSampling(): Promise<void>; stopSampling(): Promise<any>; takeSnapshot(): Promise<any>; }