WUT_Computer_Science/EGUI/lab3/front/node_modules/collect-v8-coverage/index.d.ts

8 lines
271 B
TypeScript
Raw Normal View History

2022-06-15 03:02:51 +02: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>;
}