templating dashboard & add user route to api client

This commit is contained in:
grngxd 2025-06-21 17:02:52 +01:00
parent 0d29d59937
commit f47a1b2226
9 changed files with 58 additions and 329 deletions

View file

@ -5,4 +5,12 @@ export type StereoFile = {
Size: number;
CreatedAt: string;
Mime: string;
}
export type StereoUser = {
id: string;
username: string;
blacklisted: boolean;
email: string;
created_at: string;
}