Skip to content

Commit

Permalink
Update API sample
Browse files Browse the repository at this point in the history
  • Loading branch information
ahejlsberg committed Aug 10, 2016
1 parent 65e1293 commit cba2e1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/baselines/reference/APISample_watcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ declare var path: any;
import * as ts from "typescript";

function watch(rootFileNames: string[], options: ts.CompilerOptions) {
const files: ts.Map<{ version: number }> = {};
const files: ts.MapLike<{ version: number }> = {};

// initialize the list of files
rootFileNames.forEach(fileName => {
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/compiler/APISample_watcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ declare var path: any;
import * as ts from "typescript";

function watch(rootFileNames: string[], options: ts.CompilerOptions) {
const files: ts.Map<{ version: number }> = {};
const files: ts.MapLike<{ version: number }> = {};

// initialize the list of files
rootFileNames.forEach(fileName => {
Expand Down

0 comments on commit cba2e1a

Please sign in to comment.