David Rowthorn
Results
1
issues of
David Rowthorn
Using version 0.26.0 A class like the following: ```python class Animal(BaseModel): type: Literal["dog"] = "dog" name: string ``` Should generate a typescript class like so: ```typescript export type Animal =...