TypeScript/tests/baselines/reference/organizeImports/MoveToTop_Invalid.exports.ts
Andrew Casey a327241655 Sort exports when organizeImports is run
Note that there's no attempt to remove unused exports.

Fixes #23640
2018-05-17 18:38:42 -07:00

20 lines
304 B
TypeScript

// ==ORIGINAL==
export { F1, F2 } from "lib";
1;
export * from "lib";
2;
export { b } from `${'lib'}`;
export { a } from `${'lib'}`;
export { D } from "lib";
3;
// ==ORGANIZED==
export * from "lib";
export { D, F1, F2 } from "lib";
export { b } from `${'lib'}`;
export { a } from `${'lib'}`;
1;
2;
3;