mirror of
https://github.com/MrTalon63/lets-go-gambling.git
synced 2026-03-09 09:17:58 +01:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import Bot from "../client";
|
|
|
|
export interface Event {
|
|
name: string;
|
|
event: string;
|
|
run: RunFunction;
|
|
}
|
|
|
|
export interface RunFunction {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
(client: Bot, ...args: any[]): Promise<void>;
|
|
}
|