[[Annotatable]] 可使用注解
可使用注解
1. 结构声明
- TS Declaration
- JSON Schema
abstract class Annotatable extends BaseNode {
applyAnnotations?: Array<ApplyAnnotation>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"applyAnnotations": {
"type": "array",
"items": {
"$ref": "#/definitions/ApplyAnnotation"
}
}
},
"additionalProperties": false
}