Open Kiskae opened 1 week ago
The current implementation defines the typescript type as: https://github.com/astahmer/typed-openapi/blob/146f110d71fb0cd41d1e0021c7f482c3120fbee0/packages/typed-openapi/src/openapi-schema-to-ts.ts#L122
But that is equivalent to:
{ `${t.string().value} (aka 'string')`: additionalPropertiesType; }
not
{ [index: string]: additionalPropertiesType; }
The current implementation defines the typescript type as: https://github.com/astahmer/typed-openapi/blob/146f110d71fb0cd41d1e0021c7f482c3120fbee0/packages/typed-openapi/src/openapi-schema-to-ts.ts#L122
But that is equivalent to:
not