diff --git a/types/index.ts b/types/index.ts index 0c9ae7f..f63edf4 100644 --- a/types/index.ts +++ b/types/index.ts @@ -1,6 +1,9 @@ +export type UserPemissionFlags = 'general' | 'staff' | 'bughunter' | 'booster' + export interface Bot { id: string name: string + state: BotState tag: string avatar: string status: Status @@ -36,6 +39,8 @@ export interface User { export type Status = 'online' | 'offline' | 'dnd' | 'idle' | 'streaming' +export type BotState = 'ok' | 'reported' | 'archived' | 'private' + export type Library = | 'discord.js' | 'Eris'