Skip to content

Commit 9ee093c

Browse files
authored
feat(52366): @prop is not provided as a valid JSDoc tag in autocompletion (#52384)
1 parent 273a67f commit 9ee093c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/services/jsDoc.ts

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ const jsDocTagNames = [
149149
"package",
150150
"param",
151151
"private",
152+
"prop",
152153
"property",
153154
"protected",
154155
"public",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
///<reference path="fourslash.ts" />
2+
3+
/////**
4+
//// * @typedef Foo
5+
//// * @pr/**/
6+
//// */
7+
8+
verify.completions({
9+
marker: "",
10+
includes: ["prop"],
11+
});

0 commit comments

Comments
 (0)