summary refs log tree commit diff
path: root/src/util/schemas/responses/MemberJoinGuildResponse.ts
blob: d7b39d10be582f9d6eebcd6b8a76686637dc44ae (plain) (blame)
1
2
3
4
5
6
7
8
import { Emoji, Guild, Role, Sticker } from "../../entities";

export interface MemberJoinGuildResponse {
	guild: Guild;
	emojis: Emoji[];
	roles: Role[];
	stickers: Sticker[];
}