mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-03 15:25:42 +00:00
11 lines
197 B
TypeScript
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;
|
|
}[];
|
|
}
|