mirror of
https://github.com/artiemis/artemis.js.git
synced 2026-02-14 10:21:54 +00:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
import type { ClientEvents } from "discord.js";
|
|
|
|
export interface Event<Event extends keyof ClientEvents> {
|
|
name: Event;
|
|
once?: boolean;
|
|
execute(...args: ClientEvents[Event]): Promise<void>;
|
|
}
|