Workin on cool shit now

This commit is contained in:
2025-03-19 17:00:35 -05:00
parent 939fd796ee
commit d1e9c7e6bb
12 changed files with 692 additions and 0 deletions

24
src/lib/types.ts Normal file
View File

@ -0,0 +1,24 @@
export type User = {
id: string;
full_name?: string;
email: string;
avatar_url?: string;
provider: string;
};
export type Status = {
user: User;
status: string;
created_at: Date;
updated_by: User;
};
export type PaginatedHistory = {
statuses: Status[];
meta: {
current_page: number;
per_page: number;
total_pages: number;
total_count: number;
};
};