NumberInputSetter 数字输入设置器
1. 结构声明
- TS Declaration
- JSON Schema
class NumberInputSetter extends BaseSetter {
placement?: string;
min?: number;
max?: number;
precision?: number;
placeholder?: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"placement": {
"type": "string"
},
"min": {
"type": "number"
},
"max": {
"type": "number"
},
"precision": {
"type": "number"
},
"placeholder": {
"type": "string"
}
},
"additionalProperties": false
}