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