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