Event 组件事件
1. 结构声明
- TS Declaration
- JSON Schema
class Event extends BaseNode {
name: string = '';
group: string;
title: string;
description: string;
advanced: boolean;
params: Array<Param>;
}
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"group": {
"type": "string"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"advanced": {
"type": "boolean"
},
"params": {
"type": "array",
"items": {
"$ref": "#/definitions/Param"
}
}
},
"required": [
"name",
"group",
"title",
"description",
"advanced",
"params"
],
"additionalProperties": false
}