Skip to content

Commit 68a6110

Browse files
committed
Added support for @abstract tag
1 parent 43f1dc2 commit 68a6110

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/lib/utils/options/tsdoc-defaults.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const blockTags = [
2121
"@categoryDescription",
2222
"@default",
2323
"@document",
24+
"@abstract",
2425
"@extends",
2526
"@augments", //Alias for @extends
2627
"@yields",

tsdoc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@
6767
"tagName": "@class",
6868
"syntaxKind": "modifier"
6969
},
70+
{
71+
"tagName": "@abstract",
72+
"syntaxKind": "block"
73+
},
7074
{
7175
"tagName": "@document",
7276
"syntaxKind": "block"

0 commit comments

Comments
 (0)