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