1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-14 06:32:36 +01:00
server/dist/models/Role.d.ts

14 lines
239 B
TypeScript
Raw Normal View History

2021-02-05 22:01:01 +01:00
export interface Role {
id: bigint;
2021-02-05 22:01:01 +01:00
color: number;
hoist: boolean;
managed: boolean;
mentionable: boolean;
name: string;
permissions: bigint;
position: number;
tags?: {
bot_id?: bigint;
};
2021-02-05 22:01:01 +01:00
}