ViewBlock 页面代码块
1. 结构声明
- TS Declaration
- JSON Schema
class ViewBlock extends BaseNode {
description: string;
title: string;
code: string;
}
{
"type": "object",
"properties": {
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"code": {
"type": "string"
}
},
"required": [
"description",
"title",
"code"
],
"additionalProperties": false
}