We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e1293 commit cba2e1aCopy full SHA for cba2e1a
2 files changed
tests/baselines/reference/APISample_watcher.js
@@ -20,7 +20,7 @@ declare var path: any;
20
import * as ts from "typescript";
21
22
function watch(rootFileNames: string[], options: ts.CompilerOptions) {
23
- const files: ts.Map<{ version: number }> = {};
+ const files: ts.MapLike<{ version: number }> = {};
24
25
// initialize the list of files
26
rootFileNames.forEach(fileName => {
tests/cases/compiler/APISample_watcher.ts
@@ -23,7 +23,7 @@ declare var path: any;
27
28
29
0 commit comments