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