spacebar/src/util/interfaces/GuildWelcomeScreen.ts
2023-04-13 15:28:41 -04:00

11 lines
197 B
TypeScript

export interface GuildWelcomeScreen {
enabled: boolean;
description: string;
welcome_channels: {
description: string;
emoji_id?: string;
emoji_name?: string;
channel_id: string;
}[];
}