mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-11 14:44:50 +00:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
export interface GuildUpdateWelcomeScreenSchema {
|
|
welcome_channels?: {
|
|
channel_id: string;
|
|
description: string;
|
|
emoji_id?: string;
|
|
emoji_name?: string;
|
|
}[];
|
|
enabled?: boolean;
|
|
description?: string;
|
|
}
|