swc/crates/swc_ecma_parser/tests/tsc/exportDeclaration_moduleSpecifier.ts

11 lines
164 B
TypeScript

// @Filename: /a.ts
export class A {}
// @Filename: /b.ts
export type { A } from './a';
// @Filename: /c.ts
import { A } from './b';
declare const a: A;
new A();