fix: Member always has .user

This commit is contained in:
hanabi 2022-11-20 20:12:21 -05:00
parent 8aeefb56da
commit 1c1d4d714f
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export interface Person extends PartialPerson {
}
export interface Member extends Person {
user?: PartialUser;
user: PartialUser;
}
export interface User extends Person {