UNPKG

514 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type BotsInfoResponse = WebAPICallResult & {
3 bot?: Bot;
4 error?: string;
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8};
9export interface Bot {
10 app_id?: string;
11 deleted?: boolean;
12 icons?: Icons;
13 id?: string;
14 name?: string;
15 updated?: number;
16 user_id?: string;
17}
18export interface Icons {
19 image_36?: string;
20 image_48?: string;
21 image_72?: string;
22}
23//# sourceMappingURL=BotsInfoResponse.d.ts.map
\No newline at end of file