@targetprocess/local-yaft-client
v0.6.1
Published
Client for local-yaft service
Downloads
3,447
Readme
local-yaft-client
Client for local-yaft service
Client generation
NSwag
incorrectly generates Dictionary
types:
export interface Dictionary {
[key: string]: string | any;
}
is generated instead of
export interface Dictionary {
[key: string]: string;
}
so we fix it in the client:generate:fix:ts:dictionary
script.