summary refs log tree commit diff
path: root/src/util/interfaces/GuildWelcomeScreen.ts
blob: d4de4131748e289f91589c365ac63326c8ad3d2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export interface GuildWelcomeScreen {
    enabled: boolean;
    description: string;
    welcome_channels: {
        description: string;
        emoji_id?: string;
        emoji_name?: string;
        channel_id: string;
    }[];
}