From a14ebc2f3c71cb854dacb06490ea3e0f9bc17dbd Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Fri, 7 Aug 2020 02:15:22 +0200 Subject: [PATCH] fix: add missing type in TS definition (#113) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 726c9f0d..7bf9966f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -19,6 +19,6 @@ declare class V8ToIstanbul { toIstanbul(): CoverageMapData } -declare function v8ToIstanbul(scriptPath: string, wrapperLength?: number, sources?: Sources, excludePath?: (path) => boolean): V8ToIstanbul +declare function v8ToIstanbul(scriptPath: string, wrapperLength?: number, sources?: Sources, excludePath?: (path: string) => boolean): V8ToIstanbul export = v8ToIstanbul