summary refs log tree commit diff
path: root/src/util/interfaces
diff options
context:
space:
mode:
authorTomatoCake <60300461+DEVTomatoCake@users.noreply.github.com>2024-08-17 19:15:32 +0200
committerTomatoCake <60300461+DEVTomatoCake@users.noreply.github.com>2024-08-17 19:15:32 +0200
commitff48d078e4fe163ca0553501f979e3f5c7d251ab (patch)
tree9aec5d7d0f3081e3a9977a830e200e18e6f090e4 /src/util/interfaces
parentMerge pull request #1177 from CyberL1/fix/op-8 (diff)
downloadserver-ts-ff48d078e4fe163ca0553501f979e3f5c7d251ab.tar.xz
Trying to fix guild response schemas
Diffstat (limited to 'src/util/interfaces')
-rw-r--r--src/util/interfaces/Event.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts

index a31e22639..253a013cb 100644 --- a/src/util/interfaces/Event.ts +++ b/src/util/interfaces/Event.ts
@@ -28,7 +28,6 @@ import { Role, Emoji, PublicMember, - Guild, Channel, PublicUser, User, @@ -43,6 +42,7 @@ import { ReadyUserGuildSettingsEntries, ReadyPrivateChannel, GuildOrUnavailable, + GuildCreateResponse, } from "@spacebar/util"; export interface Event { @@ -195,7 +195,7 @@ export interface GuildCreateEvent extends Event { export interface GuildUpdateEvent extends Event { event: "GUILD_UPDATE"; - data: Guild; + data: GuildCreateResponse; } export interface GuildDeleteEvent extends Event {