[[BaseNode]] 节点基类
1. 结构声明
- TS Declaration
- JSON Schema
abstract class BaseNode {
composedBy?: Array<string>;
changedTime?: long;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
}
},
"additionalProperties": false
}