mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
// @isolatedModules: true
|
|
|
|
// @Filename: /a.ts
|
|
export type A = {};
|
|
|
|
// @Filename: /b.ts
|
|
export type { A } from './a'; // should not error, but would without `type`
|