Closed
Description
According to this information it should be possible to define a nullable type in OpenAPI 3.0.x like this:
schemas:
StringNullable:
type: string
nullable: true
However this generates the following TypeScript:
export type StringNullable = string;
I was hoping it would create:
export type StringNullable = string | null;