summary refs log tree commit diff
path: root/src/util/schemas/GuildUpdateWelcomeScreenSchema.ts
blob: e271b83eb5353383bfba5c28ae9bd310c905de86 (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;
}