UNPKG

@realestate/types

Version:

Types for real estate

162 lines (137 loc) 4.08 kB
/** * Copyright (c) 2023 ListBird. All Rights Reserved. * * This software product includes software or other works developed by RESO, * subject to the RESO End User License published at www.reso.org. * * Any modifications, derivative works, or redistributions of this source must * maintain this copyright notice. See the RESO EULA for more information. */ export enum Cooling { /** * {@link https://ddwiki.reso.org/display/DDW17/Attic+Fan} * * The property has an attic fan. */ AtticFan = 'AtticFan', /** * The property has one or more ceiling fans. */ CeilingFans = 'CeilingFans', /** * {@link https://ddwiki.reso.org/display/DDW17/Central+Air} * * The property has central air conditioning. */ CentralAir = 'CentralAir', /** * {@link https://ddwiki.reso.org/display/DDW17/Dual} * * The cooling system has two units. */ Dual = 'Dual', /** * {@link https://ddwiki.reso.org/display/DDW17/Ductless} * * The cooling system does not ducted nor a wall/window type unit. A mini-split is a common type of * ductless system where an outdoor condenser is connected to an indoor fan unit that feeds the room in * which it's located, rather than being ducted throughout the structure. */ Ductless = 'Ductless', /** * The cooling system is powered by electricity. */ Electric = 'Electric', /** * {@link https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Equipment} * * The cooling system is ENERGY STAR Qualified. */ EnergyStarQualifiedEquipment = 'EnergyStarQualifiedEquipment', /** * {@link https://ddwiki.reso.org/display/DDW17/Evaporative+Cooling} * * The cooling system works by way of water evaporation rather than a compressor and coolant. Evaporative * cooling systems are often referred to as swamp coolers. */ EvaporativeCooling = 'EvaporativeCooling', /** * The structure has an exhaust fan. */ ExhaustFan = 'ExhaustFan', /** * The cooling system is powered by gas. */ Gas = 'Gas', /** * {@link https://ddwiki.reso.org/display/DDW17/Geothermal} * * The cooling system runs on a geothermal source. */ Geothermal = 'Geothermal', /** * {@link https://ddwiki.reso.org/display/DDW17/Heat+Pump} * * A system that exchanges heat between a warm and cool space. The heat exchange is done between the * dwelling and another air space, like outdoors; or a water source; or below ground (geothermal). */ HeatPump = 'HeatPump', /** * {@link https://ddwiki.reso.org/display/DDW17/Humidity+Control} * * The cooling system includes humidity control. */ HumidityControl = 'HumidityControl', /** * {@link https://ddwiki.reso.org/display/DDW17/Multi+Units} * * The cooing system includes more than one unit. */ MultiUnits = 'MultiUnits', /** * The property includes no cooling system. */ None = 'None', /** * The cooling system is different, or has features, that are not included in this list. */ Other = 'Other', /** * The cooling utilizes a roof turbine. */ RoofTurbines = 'RoofTurbines', /** * {@link https://ddwiki.reso.org/display/DDW17/Separate+Meters} * * The cooling system has separate meters for its multiple units/zones. */ SeparateMeters = 'SeparateMeters', /** * The cooling equipment varies by unit. */ VariesByUnit = 'VariesByUnit', /** * The cooling system is stand alone and mounted in an opening in an outer wall. */ WallUnits = 'WallUnits', /** * The cooling system is mounted in an opening in the wall or in a window. */ WallWindowUnits = 'WallWindowUnits', /** * {@link https://ddwiki.reso.org/display/DDW17/Whole+House+Fan} * * The property has a whole house fan. */ WholeHouseFan = 'WholeHouseFan', /** * The cooling system is window mounted. */ WindowUnits = 'WindowUnits', /** * {@link https://ddwiki.reso.org/display/DDW17/Zoned} * * The cooling system has more than one zone. */ Zoned = 'Zoned', }