blob: d08a502228ab24081d548d54ce7d0da432673b5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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;
}
|