summary refs log tree commit diff
path: root/src/models/Event.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-03-08 18:41:31 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-03-08 18:41:31 +0100
commitdce40279280ddbc3b961ab83a9cc6f0fbec7e05c (patch)
treed094ec4bdfc0c041ad8cb91221170df9084ae6b3 /src/models/Event.ts
parent:sparkles: AuditLog (diff)
downloadserver-dce40279280ddbc3b961ab83a9cc6f0fbec7e05c.tar.xz
:sparkles: changed number to date type
Diffstat (limited to 'src/models/Event.ts')
-rw-r--r--src/models/Event.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/Event.ts b/src/models/Event.ts

index ba0f064c..40cbcb20 100644 --- a/src/models/Event.ts +++ b/src/models/Event.ts
@@ -195,7 +195,7 @@ export interface GuildMemberUpdateEvent extends Event { roles: bigint[]; user: User; nick?: string; - joined_at: number; + joined_at: Date; premium_since?: number; pending?: boolean; };