From 22352a95cc7191f50dd27ab85e407931a61b9cb1 Mon Sep 17 00:00:00 2001 From: Adwaith Rao Date: Mon, 26 Aug 2019 09:51:14 +0530 Subject: [PATCH] Fix for service error --- src/app/models/mall.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/models/mall.ts b/src/app/models/mall.ts index 50325df..1bff395 100644 --- a/src/app/models/mall.ts +++ b/src/app/models/mall.ts @@ -2,7 +2,7 @@ import Offer from '../models/offer'; import { CoOrdinates } from '../shared/common-types'; import { IOutlet } from '../models/outlet'; -class Mall { +export default class Mall { id: string; name: string; is_bookmarked: boolean; @@ -84,5 +84,3 @@ export interface IMall { location: CoOrdinates; address: string; } - -export default Mall;