This repository has been archived on 2025-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tingle-bot/src/interfaces/weather/names/PrecipitationName.ts
2024-09-26 11:37:00 -07:00

21 lines
324 B
TypeScript

export type PrecipitationName =
| "Blizzard"
| "Cinder Storm"
| "Cloudy"
| "Fog"
| "Hail"
| "Heat Lightning"
| "Heavy Rain"
| "Heavy Snow"
| "Light Rain"
| "Light Snow"
| "Partly Cloudy"
| "Rain"
| "Rainbow"
| "Sleet"
| "Snow"
| "Sun Shower"
| "Sunny"
| "Thundersnow"
| "Thunderstorm";