Skip to content

Commit

Permalink
fix: add missing type in TS definition (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Aug 7, 2020
1 parent 00aae55 commit a14ebc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -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

0 comments on commit a14ebc2

Please sign in to comment.