summary refs log tree commit diff
path: root/src/util/schemas/responses/MemberJoinGuildResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/responses/MemberJoinGuildResponse.ts')
-rw-r--r--src/util/schemas/responses/MemberJoinGuildResponse.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/util/schemas/responses/MemberJoinGuildResponse.ts b/src/util/schemas/responses/MemberJoinGuildResponse.ts
new file mode 100644

index 00000000..d7b39d10 --- /dev/null +++ b/src/util/schemas/responses/MemberJoinGuildResponse.ts
@@ -0,0 +1,8 @@ +import { Emoji, Guild, Role, Sticker } from "../../entities"; + +export interface MemberJoinGuildResponse { + guild: Guild; + emojis: Emoji[]; + roles: Role[]; + stickers: Sticker[]; +}