8 lines
271 B
TypeScript
Raw Normal View History

2025-02-22 11:20:12 -06: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>;
}