UseComponent IDE 中使用的编辑组件
1. 结构声明
- TS Declaration
- JSON Schema
class UseComponent extends BaseNode {
type: string;
attrs: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
"type": "string"
},
"attrs": {
"type": "string"
}
},
"required": [
"type",
"attrs"
],
"additionalProperties": false
}