Skip to content

Commit ec947f6

Browse files
committed
chore(docs/source/api): add handling for "@deprecated" and property
This currently does not add anything to the final documentation, because i dont know which style it should be
1 parent cf6ad88 commit ec947f6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/source/api.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ parse();
7676
* @property {string} [string] Defines the full string the property will be listed as
7777
* @property {string} [anchorId] Defines the Anchor ID to be used for linking
7878
* @property {string} [description] Defines the Description the property will be listed with
79+
* @property {string} [deprecated] Defines wheter the current Property is signaled as deprecated
7980
*/
8081

8182
function parse() {
@@ -205,6 +206,9 @@ function parse() {
205206
case 'instance':
206207
ctx.isInstance = true;
207208
break;
209+
case 'deprecated':
210+
ctx.deprecated = true;
211+
break;
208212
}
209213
}
210214

0 commit comments

Comments
 (0)