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