Skip to content

Commit e6ee753

Browse files
committed
update test
1 parent 2a275c5 commit e6ee753

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crates/swc_typescript/tests/fixture/type-usage.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
```==================== .D.TS ====================
22
3-
import * as Member from "some-path/my_module";
3+
import type * as Member from "some-path/my_module";
44
export interface IMember extends Member.C<"SimpleEntity"> {
55
}
6-
import * as Ident from "some-path/my_module";
6+
import type * as Ident from "some-path/my_module";
77
export interface IIdent extends Ident {
88
}
99
import * as Paren from "some-path/my_module";

crates/swc_typescript/tests/fixture/type-usage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import * as Member from "some-path/my_module";
1+
import type * as Member from "some-path/my_module";
22
export interface IMember extends Member.C<"SimpleEntity"> {}
33

4-
import * as Ident from "some-path/my_module";
4+
import type * as Ident from "some-path/my_module";
55
export interface IIdent extends Ident {}
66

77
import * as Paren from "some-path/my_module";

0 commit comments

Comments
 (0)