mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-23 13:09:27 +08:00
d7506e9702
Co-authored-by: Oliver King <oking3@uncc.edu>
8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
/// <reference types="node" />
|
|
import { Profiler } from 'inspector';
|
|
export declare type V8Coverage = ReadonlyArray<Profiler.ScriptCoverage>;
|
|
export declare class CoverageInstrumenter {
|
|
startInstrumenting(): Promise<void>;
|
|
stopInstrumenting(): Promise<V8Coverage>;
|
|
}
|