Skip to content

Commit 37e7aa9

Browse files
committed
Added support for @abstract tag
1 parent 43f1dc2 commit 37e7aa9

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
@@ -64,6 +64,7 @@ export const tsdocModifierTags = [
6464

6565
export const modifierTags = [
6666
...tsdocModifierTags,
67+
"@abstract",
6768
"@class",
6869
"@enum",
6970
"@event",

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": "modifier"
73+
},
7074
{
7175
"tagName": "@document",
7276
"syntaxKind": "block"

0 commit comments

Comments
 (0)