File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,25 @@ export const a = 1;
6161
6262` ;
6363
64+ exports [` import-with-type-imports-together.ts - typescript-verify: import-with-type-imports-together.ts 1` ] = `
65+ import { foo } from "@server/foo"
66+ import type { Quux } from "./quux"
67+ import { Link } from "@ui/Link"
68+ import type { Bar } from "@server/bar"
69+ import type { LinkProps } from "@ui/Link/LinkProps"
70+ import { baz } from "./baz"
71+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
72+ import type { Bar } from "@server/bar";
73+ import { foo } from "@server/foo";
74+
75+ import { Link } from "@ui/Link";
76+ import type { LinkProps } from "@ui/Link/LinkProps";
77+
78+ import { baz } from "./baz";
79+ import type { Quux } from "./quux";
80+
81+ ` ;
82+
6483exports [` imports-with-comments.ts - typescript-verify: imports-with-comments.ts 1` ] = `
6584// I am top level comment in this file.
6685// I am second line of top level comment in this file.
Original file line number Diff line number Diff line change 1+ import { foo } from "@server/foo"
2+ import type { Quux } from "./quux"
3+ import { Link } from "@ui/Link"
4+ import type { Bar } from "@server/bar"
5+ import type { LinkProps } from "@ui/Link/LinkProps"
6+ import { baz } from "./baz"
You can’t perform that action at this time.
0 commit comments