a lil frontend work (as a treat)

This commit is contained in:
Sam 2023-03-23 09:30:23 +01:00
parent 9fe6529c1b
commit 77a93fd148
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
6 changed files with 36 additions and 0 deletions

View file

@ -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;