mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 21:23:24 +01:00
14 lines
239 B
TypeScript
14 lines
239 B
TypeScript
export interface Role {
|
|
id: bigint;
|
|
color: number;
|
|
hoist: boolean;
|
|
managed: boolean;
|
|
mentionable: boolean;
|
|
name: string;
|
|
permissions: bigint;
|
|
position: number;
|
|
tags?: {
|
|
bot_id?: bigint;
|
|
};
|
|
}
|