UNPKG

@realestate/types

Version:

Types for real estate

28 lines (25 loc) 1.19 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 PowerProductionType { /** * {@link https://ddwiki.reso.org/display/DDW17/Photovoltaics} * * Solar photovoltaic (PV) devices which generate electricity directly from sunlight via an electronic * process that occurs naturally in certain types of material, called semiconductors. Powers electrical * devices or sends electricity to the grid. See: <ahref="http://www.seia.org/policy/solar-technology * /photovoltaic-solar-electric">http://www.seia.org/policy/solar-technology/photovoltaic-solar-electric</a> */ Photovoltaics = 'Photovoltaics', /** * Renewable form of onsite power generation. Wind turbines use wind to make electricity. Powers electrical * devices or sends electricity to the grid. http://energy.gov/eere/wind/how-do-wind-turbines-work */ Wind = 'Wind', }