@realestate/types
Version:
Types for real estate
64 lines (55 loc) • 1.39 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 StreetDirection {
/**
* {@link https://ddwiki.reso.org/display/DDW17/E}
*
* The street suffix or prefix direction is East.
*/
E = 'E',
/**
* {@link https://ddwiki.reso.org/display/DDW17/N}
*
* The street suffix or prefix direction is North.
*/
N = 'N',
/**
* The street suffix or prefix direction is North East.
*/
NE = 'NE',
/**
* {@link https://ddwiki.reso.org/display/DDW17/NW}
*
* The street suffix or prefix direction is North West.
*/
NW = 'NW',
/**
* {@link https://ddwiki.reso.org/display/DDW17/S}
*
* The street suffix or prefix direction is South.
*/
S = 'S',
/**
* The street suffix or prefix direction is South East.
*/
SE = 'SE',
/**
* {@link https://ddwiki.reso.org/display/DDW17/SW}
*
* The street suffix or prefix direction is South West.
*/
SW = 'SW',
/**
* {@link https://ddwiki.reso.org/display/DDW17/W}
*
* The street suffix or prefix direction is West.
*/
W = 'W',
}