diff --git a/imports/models.ts b/imports/models.ts index 2a3ad9c..d618d8d 100644 --- a/imports/models.ts +++ b/imports/models.ts @@ -40,3 +40,19 @@ export interface Location { lng: number; zoom: number; } + +export interface Picture { + _id?: string; + complete?: boolean; + extension?: string; + name?: string; + progress?: number; + size?: number; + store?: string; + token?: string; + type?: string; + uploadedAt?: Date; + uploading?: boolean; + url?: string; + userId?: string; +}