swc/crates/swc_ecma_parser/tests/tsc/ambientDeclarationsPatterns_merging1.ts
2022-02-04 17:08:38 +09:00

15 lines
274 B
TypeScript

// @filename: types.ts
declare module "*.foo" {
let everywhere: string;
}
// @filename: testA.ts
import { everywhere, onlyInA } from "a.foo";
declare module "a.foo" {
let onlyInA: number;
}
// @filename: testB.ts
import { everywhere, onlyInA } from "b.foo"; // Error