blob: 38b6061b46bbdfe7ee9e876981accece94caa670 (
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;
}[];
}
|