mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
19 lines
258 B
TypeScript
19 lines
258 B
TypeScript
// @declaration: true
|
|
|
|
// @Filename: a.ts
|
|
export class A {}
|
|
|
|
// @Filename: b.ts
|
|
export type * from './a';
|
|
|
|
// @Filename: c.ts
|
|
export type * as ns from './a';
|
|
|
|
// @Filename: d.ts
|
|
import { A } from './b';
|
|
A;
|
|
|
|
// @Filename: e.ts
|
|
import { ns } from './c';
|
|
ns.A;
|