Browse Source

Fix for service error

master
Adwaith Rao 6 years ago
parent
commit
22352a95cc
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      src/app/models/mall.ts

+ 1
- 3
src/app/models/mall.ts View File

@@ -2,7 +2,7 @@ import Offer from '../models/offer';
import { CoOrdinates } from '../shared/common-types'; import { CoOrdinates } from '../shared/common-types';
import { IOutlet } from '../models/outlet'; import { IOutlet } from '../models/outlet';


class Mall {
export default class Mall {
id: string; id: string;
name: string; name: string;
is_bookmarked: boolean; is_bookmarked: boolean;
@@ -84,5 +84,3 @@ export interface IMall {
location: CoOrdinates; location: CoOrdinates;
address: string; address: string;
} }

export default Mall;

Loading…
Cancel
Save