summary refs log tree commit diff
path: root/src/util/interfaces
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-08 16:30:59 +0100
committerRory& <root@rory.gay>2026-03-20 18:16:14 +0100
commit76f060d656a629558bef2af27fd556e9dc653f92 (patch)
tree6e9c63dc04591f917c74827f40ec6ed397202d05 /src/util/interfaces
parentMigrate ChannelPinsUpdateEvent to satisfies, part of #1577 (diff)
downloadserver-ts-76f060d656a629558bef2af27fd556e9dc653f92.tar.xz
Migrate ChannelRecipient*Event to satisfies, part of #1577
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 3e1483d9..ed4f70a9 100644 --- a/src/util/interfaces/Event.ts +++ b/src/util/interfaces/Event.ts
@@ -190,7 +190,7 @@ export interface ChannelRecipientAddEvent extends Event { event: "CHANNEL_RECIPIENT_ADD"; data: { channel_id: string; - user: User; + user: PublicUser; }; } @@ -198,7 +198,7 @@ export interface ChannelRecipientRemoveEvent extends Event { event: "CHANNEL_RECIPIENT_REMOVE"; data: { channel_id: string; - user: User; + user: PublicUser; }; }