mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
|
// @Filename: /a.ts
|
||
|
class A { a!: string }
|
||
|
export type { A };
|
||
|
|
||
|
// @Filename: /b.ts
|
||
|
import * as types from './a';
|
||
|
types.A;
|
||
|
const { A } = types;
|