Lib: Add Graphic and User schemas

This commit is contained in:
2024-12-14 15:51:58 +01:00
parent 23ae4c03e5
commit 833a7fe51b

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 { export interface Team {
id: string; id: string;
name: string; name: string;