a lil frontend work (as a treat)
This commit is contained in:
parent
9fe6529c1b
commit
77a93fd148
6 changed files with 36 additions and 0 deletions
|
@ -81,6 +81,19 @@ export interface Invite {
|
|||
used: boolean;
|
||||
}
|
||||
|
||||
export interface Report {
|
||||
id: string;
|
||||
user_id: string;
|
||||
member_id: string | null;
|
||||
reason: string;
|
||||
reporter_id: string;
|
||||
|
||||
created_at: string;
|
||||
resolved_at: string | null;
|
||||
admin_id: string | null;
|
||||
admin_comment: string | null;
|
||||
}
|
||||
|
||||
export interface APIError {
|
||||
code: ErrorCode;
|
||||
message?: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue