mirror of
https://github.com/Azure/setup-kubectl.git
synced 2026-06-27 20:09:27 +08:00
Add node modules and new code for release (#39)
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
a10d84bc2e
commit
7ad2aa66bb
+24
@@ -0,0 +1,24 @@
|
||||
/// <reference types="node" />
|
||||
|
||||
import { Profiler } from 'inspector'
|
||||
import { CoverageMapData } from 'istanbul-lib-coverage'
|
||||
import { RawSourceMap } from 'source-map'
|
||||
|
||||
declare type Sources =
|
||||
| {
|
||||
source: string
|
||||
}
|
||||
| {
|
||||
source: string
|
||||
originalSource: string
|
||||
sourceMap: { sourcemap: RawSourceMap }
|
||||
}
|
||||
declare class V8ToIstanbul {
|
||||
load(): Promise<void>
|
||||
applyCoverage(blocks: ReadonlyArray<Profiler.FunctionCoverage>): void
|
||||
toIstanbul(): CoverageMapData
|
||||
}
|
||||
|
||||
declare function v8ToIstanbul(scriptPath: string, wrapperLength?: number, sources?: Sources, excludePath?: (path: string) => boolean): V8ToIstanbul
|
||||
|
||||
export = v8ToIstanbul
|
||||
Reference in New Issue
Block a user