We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d496fd commit a69c372Copy full SHA for a69c372
api/server/models.ts
@@ -38,3 +38,19 @@ export interface Location {
38
lng: number;
39
zoom: number;
40
}
41
+
42
+export interface Picture {
43
+ _id?: string;
44
+ complete?: boolean;
45
+ extension?: string;
46
+ name?: string;
47
+ progress?: number;
48
+ size?: number;
49
+ store?: string;
50
+ token?: string;
51
+ type?: string;
52
+ uploadedAt?: Date;
53
+ uploading?: boolean;
54
+ url?: string;
55
+ userId?: string;
56
+}
0 commit comments