Skip to content

Commit 18517ec

Browse files
committed
added type to shut ts compiler up
1 parent bed7f31 commit 18517ec

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/types/testrunner.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
interface testrunnerconfig {
2+
ui: string;
3+
useColors: boolean;
4+
}
5+
6+
declare module "vscode/lib/testrunner" {
7+
function configure(config: testrunnerconfig): void;
8+
}

0 commit comments

Comments
 (0)