projects/maplander/components/src/lib/utils/models/amenities-list.ts
adjacentCommerce |
adjacentCommerce:
|
Type : AmenityItem
|
adjacentGym |
adjacentGym:
|
Type : AmenityItem
|
adjacentPicnic |
adjacentPicnic:
|
Type : AmenityItem
|
airConditioner |
airConditioner:
|
Type : AmenityItem
|
balcony |
balcony:
|
Type : AmenityItem
|
customerParking |
customerParking:
|
Type : AmenityItem
|
differentAbilities |
differentAbilities:
|
Type : AmenityItem
|
diningRoom |
diningRoom:
|
Type : AmenityItem
|
doubleHeight |
doubleHeight:
|
Type : AmenityItem
|
dressingRooms |
dressingRooms:
|
Type : AmenityItem
|
facingStreet |
facingStreet:
|
Type : AmenityItem
|
features |
features:
|
Type : AmenityItem[]
|
finishings |
finishings:
|
Type : AmenityItem
|
furnished |
furnished:
|
Type : AmenityItem
|
garden |
garden:
|
Type : AmenityItem
|
gym |
gym:
|
Type : AmenityItem
|
highResistanceFloors |
highResistanceFloors:
|
Type : AmenityItem
|
highSpeedInternet |
highSpeedInternet:
|
Type : AmenityItem
|
inCommercialArea |
inCommercialArea:
|
Type : AmenityItem
|
inIndustrialPark |
inIndustrialPark:
|
Type : AmenityItem
|
inShoppingCenter |
inShoppingCenter:
|
Type : AmenityItem
|
jacuzzi |
jacuzzi:
|
Type : AmenityItem
|
kitchenServices |
kitchenServices:
|
Type : AmenityItem
|
maidsBathroom |
maidsBathroom:
|
Type : AmenityItem
|
maneuverArea |
maneuverArea:
|
Type : AmenityItem
|
meetingRoom |
meetingRoom:
|
Type : AmenityItem
|
mezzanine |
mezzanine:
|
Type : AmenityItem
|
mixedBuilding |
mixedBuilding:
|
Type : AmenityItem
|
naturalLighting |
naturalLighting:
|
Type : AmenityItem
|
offices |
offices:
|
Type : AmenityItem
|
openSpace |
openSpace:
|
Type : AmenityItem
|
petFriendly |
petFriendly:
|
Type : AmenityItem
|
platforms |
platforms:
|
Type : AmenityItem
|
playground |
playground:
|
Type : AmenityItem
|
playroom |
playroom:
|
Type : AmenityItem
|
pool |
pool:
|
Type : AmenityItem
|
railSpur |
railSpur:
|
Type : AmenityItem
|
railyard |
railyard:
|
Type : AmenityItem
|
reception |
reception:
|
Type : AmenityItem
|
roofGarden |
roofGarden:
|
Type : AmenityItem
|
securityGuard |
securityGuard:
|
Type : AmenityItem
|
storage |
storage:
|
Type : AmenityItem
|
visitorParking |
visitorParking:
|
Type : AmenityItem
|
import {AmenityItem} from './amenity-item';
export interface AmenitiesList {
adjacentCommerce: AmenityItem;
adjacentGym: AmenityItem;
adjacentPicnic: AmenityItem;
airConditioner: AmenityItem;
balcony: AmenityItem;
customerParking: AmenityItem;
diningRoom: AmenityItem;
doubleHeight: AmenityItem;
dressingRooms: AmenityItem;
facingStreet: AmenityItem;
finishings: AmenityItem;
furnished: AmenityItem;
garden: AmenityItem;
gym: AmenityItem;
highResistanceFloors: AmenityItem;
highSpeedInternet: AmenityItem;
inCommercialArea: AmenityItem;
inIndustrialPark: AmenityItem;
inShoppingCenter: AmenityItem;
jacuzzi: AmenityItem;
kitchenServices: AmenityItem;
maidsBathroom: AmenityItem;
maneuverArea: AmenityItem;
meetingRoom: AmenityItem;
mezzanine: AmenityItem;
mixedBuilding: AmenityItem;
naturalLighting: AmenityItem;
offices: AmenityItem;
openSpace: AmenityItem;
platforms: AmenityItem;
playground: AmenityItem;
playroom: AmenityItem;
pool: AmenityItem;
railSpur: AmenityItem;
railyard: AmenityItem;
reception: AmenityItem;
securityGuard: AmenityItem;
storage: AmenityItem;
visitorParking: AmenityItem;
roofGarden: AmenityItem;
petFriendly: AmenityItem;
differentAbilities: AmenityItem;
features: AmenityItem[];
}