8 lines
271 B
TypeScript
Raw Permalink Normal View History

2022-10-27 16:56:30 -03:00
/// <reference types="node" />
import { Profiler } from 'inspector';
export declare type V8Coverage = ReadonlyArray<Profiler.ScriptCoverage>;
export declare class CoverageInstrumenter {
startInstrumenting(): Promise<void>;
stopInstrumenting(): Promise<V8Coverage>;
}