type: added missing typing BotState

This commit is contained in:
원더 2021-01-08 22:18:32 +09:00
parent 3e6870e423
commit 0015e7ad00

View File

@ -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'