generated from nhcarrigan/template
Reviewed-on: https://codeberg.org/nhcarrigan/tingle-bot/pulls/1 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
15 lines
221 B
TypeScript
15 lines
221 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
export type WindName =
|
|
| "Calm"
|
|
| "Breeze"
|
|
| "Moderate"
|
|
| "Fresh"
|
|
| "Strong"
|
|
| "Gale"
|
|
| "Storm"
|
|
| "Hurricane";
|