Files
frontend/webpage/src/types.ts
2025-12-07 16:46:44 +08:00

12 lines
188 B
TypeScript

export interface Image {
id: string;
uploaded_user_id: string;
uploaded_at: string;
aliases: string[];
url: string;
}
export interface User {
id: string;
username: string;
}