Initial commit
I asked claude to scaffold a project. I also made changes to it afterwards but they were mostly in getting workflows and testing stuff.
This commit is contained in:
5
src/lib/types.ts
Normal file
5
src/lib/types.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface User { id: any; username: string; email: string; avatar?: string; created: string; }
|
||||
export interface Room { id: any; name: string; created: string; }
|
||||
export interface Message { id: any; room: any; author: any; author_username?: string; body: string; created: string; }
|
||||
export interface LiveEvent { action: 'Create' | 'Update' | 'Delete'; data: Message; }
|
||||
export interface ContextMenuItem { label: string; action: () => void; }
|
||||
Reference in New Issue
Block a user