We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf6ad88 commit ec947f6Copy full SHA for ec947f6
docs/source/api.js
@@ -76,6 +76,7 @@ parse();
76
* @property {string} [string] Defines the full string the property will be listed as
77
* @property {string} [anchorId] Defines the Anchor ID to be used for linking
78
* @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
80
*/
81
82
function parse() {
@@ -205,6 +206,9 @@ function parse() {
205
206
case 'instance':
207
ctx.isInstance = true;
208
break;
209
+ case 'deprecated':
210
+ ctx.deprecated = true;
211
+ break;
212
}
213
214
0 commit comments