TypeScript/tests/cases/fourslash/moveToNewFile_moveImport.ts
Andy eadf44d073
Add generateTypesForModule to public API (#28069)
* Add generateTypesForModule to public API

* Avoid parameter initializer and update baselines
2018-10-23 16:10:26 -07:00

20 lines
275 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: /a.ts
////[|import { a, b } from "m";
////let l;
////a;|]
////b;
verify.moveToNewFile({
newFileContents: {
"/a.ts":
`import { b } from "m";
b;`,
"/l.ts":
`import { a } from "m";
let l;
a;
`,
}
});