blob: adb0c1a6d2f5ca71face01aaa4ed6d0a82b70b07 (
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;
}
|