Add MC gender to account state and User type

This commit is contained in:
Justin Edmund 2022-04-10 13:24:58 -07:00
parent b0b0219896
commit e369981981
2 changed files with 2 additions and 0 deletions

1
types/User.d.ts vendored
View file

@ -6,5 +6,6 @@ interface User {
picture: string picture: string
element: string element: string
} }
gender: number
private: boolean private: boolean
} }

View file

@ -10,6 +10,7 @@ interface AccountState {
username: string username: string
picture: string picture: string
element: string element: string
gender: number
} | undefined } | undefined
} }
} }