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