Theme 主题
1. 结构声明
- TS Declaration
- JSON Schema
class Theme extends BaseNode {
title: string = '默认主题样式';
variableMap: {
[name: string]: string;
} = {};
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "string"
},
"variableMap": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": [
"title",
"variableMap"
],
"additionalProperties": false
}