我正在使用json模式来键入脚本,并希望指定一个字符串数组。
目前,我有以下几种:
"type": "object",
"description": "...",
"additionalProperties": true,
"items": {
"type": "string"
}
转换为TS时,返回[k: string]: unknown;
我希望它返回[k: string]: string;
。
提前感谢
items
是一个数组关键字,但您已经指定了"type": "object"
。您是否尝试过将其更改为"type": "array"
并删除additionalProperties
?
我删除了items
属性并更改为"additionalProperties": { "type": "string" }