mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +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; |