@realestate/types
Version:
Types for real estate
43 lines (37 loc) • 1.17 kB
TypeScript
/**
* 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 DoorFeatures {
/**
* {@link https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Doors}
*
* The property has ENERGY STAR qualified door(s).
*/
EnergyStarQualifiedDoors = 'EnergyStarQualifiedDoors',
/**
* {@link https://ddwiki.reso.org/display/DDW17/French+Doors}
*
* The property has doors with glass panes throughout the length of the door.
*/
FrenchDoors = 'FrenchDoors',
/**
* The property has one or more closet doors that have a mirrored surface.
*/
MirroredClosetDoors = 'MirroredClosetDoors',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sliding+Doors}
*
* The property has sliding doors.
*/
SlidingDoors = 'SlidingDoors',
/**
* The property has one or more storm doors.
*/
StormDoors = 'StormDoors',
}