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

// located in collection events