OpenApi Schema
"MyDictionary": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
Generated TypeScript
/**
*
* @export
* @interface ProviderIdDictionary
*/
export interface ProviderIdDictionary extends null<String, string> {
[key: string]: string;
}