IconSetter 图标设置器
1. 结构声明
- TS Declaration
- JSON Schema
class IconSetter extends BaseSetter {
title?: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "string"
}
},
"additionalProperties": false
}