Newer
Older
percord / src / util / schemas / RoleModifySchema.ts
@Madeline Madeline on 26 Sep 2022 305 bytes Prettier
export interface RoleModifySchema {
	name?: string;
	permissions?: string;
	color?: number;
	hoist?: boolean; // whether the role should be displayed separately in the sidebar
	mentionable?: boolean; // whether the role should be mentionable
	position?: number;
	icon?: string;
	unicode_emoji?: string;
}