blob: e0f2f863f464cbe46bdc9a6829596f36c34223ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export interface Role {
id: bigint;
color: number;
hoist: boolean;
managed: boolean;
mentionable: boolean;
name: string;
permissions: bigint;
position: number;
tags?: {
bot_id?: bigint;
};
}
|