inspector-api
Version:
A simple node module to access V8 inspector + some tools to export and read the data.
15 lines (14 loc) • 405 B
TypeScript
export = Profiler;
declare class Profiler {
constructor(session: any, config: any, s3Client: any);
s3Client: any;
session: any;
config: any;
enable(): Promise<void>;
disable(): Promise<void>;
start(): Promise<void>;
stop(): Promise<any>;
startPreciseCoverage(args: any): Promise<any>;
stopPreciseCoverage(): Promise<any>;
takePreciseCoverage(): Promise<any>;
}