diff --git a/types/index.ts b/types/index.ts index d243891..6cad5bb 100644 --- a/types/index.ts +++ b/types/index.ts @@ -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'