TypeScript/tests/cases/fourslash/codeFixCalledES2015Import12.ts
Wesley Wigham 640af3f75e
Introduce related spans into tsserver protocol (#24548)
* Introduce related spans into tsserver protocol

* Incorporate pretty output, implement esModuleInterop related span
2018-06-15 10:54:36 -07:00

19 lines
429 B
TypeScript

/// <reference path='fourslash.ts' />
// @esModuleInterop: true
// @Filename: foo.d.ts
////declare function foo(): void;
////declare namespace foo {}
////export = foo;
// @Filename: index.ts
////import * as foo from "./foo";
////[|foo()|];
goTo.file(1);
verify.codeFix({
description: `Use synthetic 'default' member.`,
newFileContent: `import * as foo from "./foo";
foo.default();`,
index: 2,
});