summary refs log tree commit diff
path: root/dist/models/Event.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-08 16:29:36 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-08 16:29:36 +0100
commit800163a913f7bba533dddc4b3ee28909578987ce (patch)
tree71f8e26597936c6472b73f013c8b956cf9e9363a /dist/models/Event.d.ts
parent:arrow_up: bump lambert-db (diff)
downloadserver-800163a913f7bba533dddc4b3ee28909578987ce.tar.xz
:sparkles: Event Model
Diffstat (limited to 'dist/models/Event.d.ts')
-rw-r--r--dist/models/Event.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/dist/models/Event.d.ts b/dist/models/Event.d.ts
new file mode 100644

index 00000000..969baef8 --- /dev/null +++ b/dist/models/Event.d.ts
@@ -0,0 +1,7 @@ +export interface Event { + guild_id?: bigint; + user_id?: bigint; + created_at: number; + data: any; + event: string; +}