feat(!): use strings for WordStatus enum instead of ints
This commit is contained in:
parent
11ef4d548a
commit
96376516b0
3 changed files with 56 additions and 20 deletions
|
@ -43,12 +43,12 @@ export interface Pronoun {
|
|||
}
|
||||
|
||||
export enum WordStatus {
|
||||
Unknown = 0,
|
||||
Favourite = 1,
|
||||
Okay = 2,
|
||||
Jokingly = 3,
|
||||
FriendsOnly = 4,
|
||||
Avoid = 5,
|
||||
Unknown = "",
|
||||
Favourite = "favourite",
|
||||
Okay = "okay",
|
||||
Jokingly = "jokingly",
|
||||
FriendsOnly = "friends_only",
|
||||
Avoid = "avoid",
|
||||
}
|
||||
|
||||
export interface PartialMember {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue