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