File

src/app/Place.ts

Properties

category
category: string[]
Type : string[]
coverImage
coverImage: string
Type : string
description
description: string
Type : string
geometry
geometry: { type: string; coordinates: number[]; }
Type : { type: string; coordinates: number[]; }
id
id: number
Type : number
images
images: [{ caption: string; url: string; }]
Type : [{ caption: string; url: string; }]
isFavourite
isFavourite: boolean
Type : boolean
location
location: string
Type : string
name
name: string
Type : string
rating
rating: number
Type : number
shortDescription
shortDescription: string
Type : string
tags
tags: string[]
Type : string[]
export interface Place {
  id?: number;
  name: string;
  shortDescription: string;
  description: string;
  coverImage: string;
  images: [
    {
      caption: string;
      url: string;
    }
  ]
  category: string[];
  location: string;
  isFavourite: boolean;
  rating: number;
  tags: string[];
  geometry: {
    type: string,
    coordinates: number []
  }
}

results matching ""

    No results matching ""