mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 14:30:22 +00:00
type: added missing typing BotState
This commit is contained in:
parent
3e6870e423
commit
0015e7ad00
@ -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'
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user