Scott Campbell
Scott Campbell
Generated mutable types: ``` interface Thing { name: string; children: Array; } type x = ResponseWithBody; ``` Could be immutable types: ``` interface ReadonlyThing { readonly name: string; readonly children:...
The response types can be quite long, and inconvenient to use. `const x: Promise = undefined;` I propose generating some concise type aliases. ``` type SomeAlias1 = ResponseWithBody; type SomeAlias2...
The api methods have docs, but the types themselves do not. **Actual:** Response types are missing JSDocs ``` export type User { id: number; username: string; } ``` **Expected:** JSDocs...
In a perfect world, everyone would version their immutable apis and never introduce breaking changes. But in reality co-workers could introduce breaking api changes. There could potentially be a mismatch...
Horriblesubs does not allow for packlist command, so I wrote this plugin and it works nicely. However it would be nice to have it in a seperate project that would...
API Documentation is missing example: ``` /// /// Gets the source. /// /// The source. /// URL. ```