mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-10 06:41:59 -06:00
Merge pull request #25253 from micnic/master
Add missing jsdoc tag names
This commit is contained in:
commit
7a082d45f8
@ -1,48 +1,83 @@
|
||||
/* @internal */
|
||||
namespace ts.JsDoc {
|
||||
const jsDocTagNames = [
|
||||
"abstract",
|
||||
"access",
|
||||
"alias",
|
||||
"argument",
|
||||
"async",
|
||||
"augments",
|
||||
"author",
|
||||
"argument",
|
||||
"borrows",
|
||||
"callback",
|
||||
"class",
|
||||
"classDesc",
|
||||
"constant",
|
||||
"constructor",
|
||||
"constructs",
|
||||
"copyright",
|
||||
"default",
|
||||
"deprecated",
|
||||
"description",
|
||||
"emits",
|
||||
"enum",
|
||||
"event",
|
||||
"example",
|
||||
"exports",
|
||||
"extends",
|
||||
"external",
|
||||
"field",
|
||||
"file",
|
||||
"fileOverview",
|
||||
"fires",
|
||||
"function",
|
||||
"generator",
|
||||
"global",
|
||||
"hideConstructor",
|
||||
"host",
|
||||
"ignore",
|
||||
"implements",
|
||||
"inheritDoc",
|
||||
"inner",
|
||||
"instance",
|
||||
"interface",
|
||||
"kind",
|
||||
"lends",
|
||||
"link",
|
||||
"license",
|
||||
"listens",
|
||||
"member",
|
||||
"memberOf",
|
||||
"method",
|
||||
"mixes",
|
||||
"module",
|
||||
"name",
|
||||
"namespace",
|
||||
"override",
|
||||
"package",
|
||||
"param",
|
||||
"private",
|
||||
"prop",
|
||||
"property",
|
||||
"protected",
|
||||
"public",
|
||||
"readonly",
|
||||
"requires",
|
||||
"returns",
|
||||
"see",
|
||||
"since",
|
||||
"static",
|
||||
"summary",
|
||||
"template",
|
||||
"this",
|
||||
"throws",
|
||||
"todo",
|
||||
"tutorial",
|
||||
"type",
|
||||
"typedef",
|
||||
"version"
|
||||
"var",
|
||||
"variation",
|
||||
"version",
|
||||
"virtual",
|
||||
"yields"
|
||||
];
|
||||
let jsDocTagNameCompletionEntries: CompletionEntry[];
|
||||
let jsDocTagCompletionEntries: CompletionEntry[];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user