diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 11:38:19 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 11:38:19 +0200 |
commit | 1175e5c718a7ed5e60151b60480ad825e39ac51a (patch) | |
tree | 77c2e6ec6d6469edc8cf99042cac630de48895e9 /util/src | |
parent | :bug: fix patch-package (diff) | |
download | server-1175e5c718a7ed5e60151b60480ad825e39ac51a.tar.xz |
:bug: fix ReadyEventData
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/interfaces/Event.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/interfaces/Event.ts b/util/src/interfaces/Event.ts index 2885d62a..ae966e42 100644 --- a/util/src/interfaces/Event.ts +++ b/util/src/interfaces/Event.ts @@ -87,7 +87,7 @@ export interface ReadyEventData { id: string; flags: string; }; - merged_members?: Omit<Member, "settings" | "user">[][]; + merged_members?: PublicMember[][]; // probably all users who the user is in contact with users?: PublicUser[]; } |