TypeScript/tests/baselines/reference/organizeImports/SortHeaderComment.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

11 lines
144 B
TypeScript

// ==ORIGINAL==
// Header
export * from "lib2";
export * from "lib1";
// ==ORGANIZED==
// Header
export * from "lib1";
export * from "lib2";