TypeScript/tests/cases/fourslash/codeFixCalledES2015Import3.ts

22 lines
547 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
// @esModuleInterop: true
// @module: amd
// @Filename: foo.d.ts
////declare function foo(): void;
////declare namespace foo {}
////export = foo;
// @Filename: index.ts
////import * as foo from "./foo";
////function invoke(f: () => void) { f(); }
////invoke([|foo|]);
goTo.file(1);
verify.codeFix({
description: `Replace import with 'import foo from "./foo";'.`,
newFileContent: `import foo from "./foo";
function invoke(f: () => void) { f(); }
invoke(foo);`,
index: 0,
});