We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hi!
Is it possible to add an option to generate
export type User = { username?: string; uuid?: string; }
instead of
export interface User { username?: string; uuid?: string; }
Sometimes it is necessary to prevent possible expansion of the type. Use case here