File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
crates/swc_typescript/tests/fixture Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11` ` ` ==================== .D.TS ====================
22
3- import * as Member from "some-path/my_module";
3+ import type * as Member from "some-path/my_module";
44export 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";
77export interface IIdent extends Ident {
88}
99import * as Paren from "some-path/my_module";
Original file line number Diff line number Diff line change 1- import * as Member from "some-path/my_module" ;
1+ import type * as Member from "some-path/my_module" ;
22export 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" ;
55export interface IIdent extends Ident { }
66
77import * as Paren from "some-path/my_module" ;
You can’t perform that action at this time.
0 commit comments