CompletionProperty 自动补全属性
1. 结构声明
- TS Declaration
- JSON Schema
class CompletionProperty extends BaseNode {
name: string = '';
value: string;
label: string;
description: string;
typeAnnotation: TypeAnnotation;
defaultValue: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"typeAnnotation": {
"$ref": "#/definitions/TypeAnnotation"
},
"defaultValue": {
"type": "string"
}
},
"required": [
"name",
"value",
"label",
"description",
"typeAnnotation",
"defaultValue"
],
"additionalProperties": false
}