Lib: Add Graphic and User schemas

This commit is contained in:
2024-12-14 15:51:58 +01:00
parent 66d2d9b878
commit 16a315c1a5

View File

@ -1,3 +1,17 @@
export interface Graphic {
name: string;
file: string;
file_url?: string;
}
export interface User {
id: string;
username: string;
avatar: string;
avatar_url?: string;
admin: boolean;
}
export interface Team {
id: string;
name: string;