-
-
Notifications
You must be signed in to change notification settings - Fork 302
Closed
Description
I didn't really understand the comments in the release notes. I don't understand why you couldn't do this:
export namespace UserProfile {
export type status =
| "Active"
| "Inactive"
| "Invited - Pending"
| "Not Invited";
}
instead of what 0.79 produces:
export namespace UserProfile {
export enum status {
ACTIVE = "Active",
INACTIVE = "Inactive",
INVITED___PENDING = "Invited - Pending",
NOT_INVITED = "Not Invited"
}
}
Metadata
Metadata
Assignees
Labels
No labels