This commit is contained in:
Zimeng Xiong
2025-11-21 19:18:07 -08:00
parent 35734936b3
commit 4e8beae0ee
66 changed files with 21548 additions and 315 deletions
+16
View File
@@ -0,0 +1,16 @@
export interface Drawing {
id: string;
name: string;
elements: any[];
appState: any;
collectionId: string | null;
updatedAt: number;
createdAt: number;
preview?: string;
}
export interface Collection {
id: string;
name: string;
createdAt: number;
}