summary refs log tree commit diff
path: root/src/util/interfaces/Event.ts
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-08 16:50:12 +0100
committerRory& <root@rory.gay>2026-03-20 18:16:14 +0100
commit2a1d8ff93e34d112b3664ec3e20570d3e171718f (patch)
tree24c0292c2c05a7eb8a7465411cd75a373db9b6ac /src/util/interfaces/Event.ts
parentMigrate GuildStickersUpdateEvent to satisfies, part of #1577 (diff)
downloadserver-ts-2a1d8ff93e34d112b3664ec3e20570d3e171718f.tar.xz
Migrate Member#addToGuild GuildCreateEvent to satisfies, part of #1577
Diffstat (limited to 'src/util/interfaces/Event.ts')
-rw-r--r--src/util/interfaces/Event.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts

index 4763e65e..87c8c812 100644 --- a/src/util/interfaces/Event.ts +++ b/src/util/interfaces/Event.ts
@@ -213,6 +213,8 @@ export interface GuildCreateEvent extends Event { stage_instances: never[]; threads: never[]; embedded_activities: never[]; + // Only when not using PRIORITISED_READY_PAYLOAD capability + voice_states?: PublicVoiceState[]; }; }