Newer
Older
percord / src / util / schemas / EmojiCreateSchema.ts
@Madeline Madeline on 26 Sep 2022 124 bytes Prettier
export interface EmojiCreateSchema {
	name?: string;
	image: string;
	require_colons?: boolean | null;
	roles?: string[];
}