Skip to content

Commit 78599ee

Browse files
committed
1 parent 9e5a779 commit 78599ee

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/// <reference path="fourslash.ts"/>
2+
3+
const variableOne = 1;
4+
const variableTwo = 2;
5+
const objAny: any = {
6+
v/*1*/
7+
}
8+
const objNone = {
9+
v/*2*/
10+
}
11+
12+
interface Typed {
13+
variableThree: number;
14+
}
15+
const typed: Typed = {
16+
v/*3*/
17+
}
18+
19+
verify.completions(
20+
{ marker: ["1", "2"], includes: ["variableOne", "variableTwo"]},
21+
{ marker: "3", includes: ["variableThree"], excludes: ["variableOne", "variableTwo"]},
22+
);

0 commit comments

Comments
 (0)