feat: added BotList type

This commit is contained in:
원더 2021-01-09 19:29:21 +09:00
parent f12805187a
commit fb624ef25c

View File

@ -37,6 +37,13 @@ export interface User {
bots: Bot[] | string[]
}
export interface BotList {
type: ListType
data: Bot[]
currentPage: number
totalPage: number
}
export type Status = 'online' | 'offline' | 'dnd' | 'idle' | 'streaming'
export type BotState = 'ok' | 'reported' | 'archived' | 'private'