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