[[AbstractInterface]] 接口
1. 结构声明
- TS Declaration
- JSON Schema
abstract class AbstractInterface extends BaseNode {}
{
"type": "object",
"additionalProperties": false,
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
}
}
}