/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import type { WindName } from "./names/windName.js"; export interface Wind { lowSpeed: number; highSpeed: number; name: WindName; emote: string; }