swc/crates/swc_ecma_lints/tests/pass/issue-4148/1/input.ts

7 lines
93 B
TypeScript

//a.ts
import type { Foo } from "./b";
const Foo = "hey";
// b.ts
export type Foo = string;