I am working with json-schema-to-typescript and looking to define an array of strings.
Currently, my code looks like this:
"type": "object",
"description": "...",
"additionalProperties": true,
"items": {
"type": "string"
}
However, when converted to TS, it outputs [k: string]: unknown;
Is there a way for it to generate [k: string]: string;
instead?
Appreciate your help in advance