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/Wind.ts
2024-09-26 11:37:00 -07:00

9 lines
148 B
TypeScript

import { WindName } from "./names/WindName";
export interface Wind {
lowSpeed: number;
highSpeed: number;
name: WindName;
emote: string;
}