forked from mirrors/pronouns.cc
fix(frontend): add missing fields to Member type
This commit is contained in:
parent
03a0ffc1ca
commit
53a48ab4a4
1 changed files with 5 additions and 0 deletions
|
@ -27,9 +27,14 @@ export interface Member extends PartialMember {
|
|||
bio: string | null;
|
||||
links: string[] | null;
|
||||
id: string;
|
||||
display_name: string | null;
|
||||
name: string;
|
||||
avatar_urls: string[] | null;
|
||||
|
||||
names: Name[];
|
||||
pronouns: Pronoun[];
|
||||
fields: Field[];
|
||||
|
||||
user?: PartialUser;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue