We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ec02b commit d69f9f3Copy full SHA for d69f9f3
tests/cases/conformance/ambient/ambientDeclarationsPatterns_merging3.ts
@@ -0,0 +1,12 @@
1
+// @filename: types.ts
2
+declare module "*.foo" {
3
+ export interface OhNo { star: string }
4
+}
5
+
6
+// @filename: test.ts
7
+declare module "a.foo" {
8
+ export interface OhNo { a: string }
9
10
+import { OhNo } from "b.foo"
11
+declare let ohno: OhNo;
12
+ohno.a // oh no
0 commit comments