mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 00:23:10 +03:00
7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
//a.ts
|
|
import type { Foo } from "./b";
|
|
const Foo = "hey";
|
|
|
|
// b.ts
|
|
export type Foo = string;
|