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>
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
/**
|
|
* @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;
|
|
}
|