summary refs log tree commit diff
path: root/src/util/schemas/EmojiCreateSchema.ts
blob: 8e2a230797fc58046c6b0780152d8f1902328791 (plain) (blame)
1
2
3
4
5
6
export interface EmojiCreateSchema {
	name?: string;
	image: string;
	require_colons?: boolean | null;
	roles?: string[];
}