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