From b223c56a61815099d490b705e68222101008b6a1 Mon Sep 17 00:00:00 2001 From: dotansimha Date: Tue, 24 Jan 2017 22:40:52 +0200 Subject: [PATCH] Step 12.10: Create Picture model --- imports/models.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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; +}