mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-01 16:35:19 +00:00
14 lines
203 B
TypeScript
14 lines
203 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;
|
|
};
|
|
}
|