This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2021-02-08 16:29:36 +01:00

8 lines
130 B
TypeScript

export interface Event {
guild_id?: bigint;
user_id?: bigint;
created_at: number;
data: any;
event: string;
}