@realestate/types
Version:
Types for real estate
68 lines (59 loc) • 1.56 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 DirectionFaces {
/**
* {@link https://ddwiki.reso.org/display/DDW17/East}
*
* The front of the structure faces east.
*/
East = 'East',
/**
* {@link https://ddwiki.reso.org/display/DDW17/North}
*
* The front of the structure faces north.
*/
North = 'North',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Northeast}
*
* The front of the structure faces northeast.
*/
Northeast = 'Northeast',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Northwest}
*
* The front of the structure faces northwest.
*/
Northwest = 'Northwest',
/**
* {@link https://ddwiki.reso.org/display/DDW17/South}
*
* The front of the structure faces south.
*/
South = 'South',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Southeast}
*
* The front of the structure faces southeast.
*/
Southeast = 'Southeast',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Southwest}
*
* The front of the structure faces southwest.
*/
Southwest = 'Southwest',
/**
* {@link https://ddwiki.reso.org/display/DDW17/West}
*
* The front of the structure faces west.
*/
West = 'West',
}