TypeScript/tests/cases/fourslash/moveToNewFile.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

34 lines
590 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: /a.ts
////// header comment
////
////import './foo';
////import { a, b, alreadyUnused } from './other';
////const p = 0;
////[|const y: Date = p + b;|]
////a; y;
verify.moveToNewFile({
newFileContents: {
"/a.ts":
`// header comment
import './foo';
import { a, alreadyUnused } from './other';
import { y } from './y';
export const p = 0;
a; y;`,
"/y.ts":
`import { b } from './other';
import { p } from './a';
export const y: Date = p + b;
`,
},
preferences: {
quotePreference: "single",
}
});