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/temperatureName.ts

19 lines
278 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export type TemperatureName =
| "Frigid"
| "Freezing"
| "Cold"
| "Chilly"
| "Brisk"
| "Cool"
| "Mild"
| "Perfect"
| "Warm"
| "Hot"
| "Scorching"
| "Heat Wave";