Skip to content

Commit

Permalink
fix(events): add missing discordjs events (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
DemonWayne authored Oct 5, 2023
1 parent 370755e commit a88c706
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/types/Events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export const Events = {
ClientReady: DJSEvents.ClientReady as const,
Debug: DJSEvents.Debug as const,
Error: DJSEvents.Error as const,
GuildAuditLogEntryCreate: DJSEvents.GuildAuditLogEntryCreate as const,
GuildAvailable: DJSEvents.GuildAvailable as const,
GuildBanAdd: DJSEvents.GuildBanAdd as const,
GuildBanRemove: DJSEvents.GuildBanRemove as const,
GuildCreate: DJSEvents.GuildCreate as const,
Expand All @@ -48,7 +50,7 @@ export const Events = {
GuildEmojiUpdate: DJSEvents.GuildEmojiUpdate as const,
GuildIntegrationsUpdate: DJSEvents.GuildIntegrationsUpdate as const,
GuildMemberAdd: DJSEvents.GuildMemberAdd as const,
GuildMemberAvailable: DJSEvents.GuildMemberAdd as const,
GuildMemberAvailable: DJSEvents.GuildMemberAvailable as const,
GuildMemberRemove: DJSEvents.GuildMemberRemove as const,
GuildMembersChunk: DJSEvents.GuildMembersChunk as const,
GuildMemberUpdate: DJSEvents.GuildMemberUpdate as const,
Expand Down

0 comments on commit a88c706

Please sign in to comment.