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 835d0ac commit 684de53Copy full SHA for 684de53
tests/cases/fourslash/completionListWithAmbientDeclaration.ts
@@ -2,8 +2,14 @@
2
3
//// declare module "http" {
4
//// var x;
5
+//// /*1*/
6
//// }
-//// /**/
7
+//// declare module 'https' {
8
+//// }
9
+//// /*2*/
10
-goTo.marker();
11
+goTo.marker("1");
12
+verify.not.completionListContains("http");
13
+goTo.marker("2");
14
verify.not.completionListContains("http");
15
+verify.not.completionListContains("https");
0 commit comments