summary refs log tree commit diff
path: root/dist/server-util/src/models/Event.d.ts
blob: a86f3c0737053faf73130e1fa81f7c0500c78aef (plain) (blame)
1
2
3
4
5
6
7
8
export interface Event {
    guild_id?: bigint;
    user_id?: bigint;
    channel_id?: bigint;
    created_at: number;
    data: any;
    event: string;
}