@slack/web-api
Version:
Official library for using the Slack Platform's Web API
23 lines • 519 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type BotsInfoResponse = WebAPICallResult & {
bot?: Bot;
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
};
export interface Bot {
app_id?: string;
deleted?: boolean;
icons?: Icons;
id?: string;
name?: string;
updated?: number;
user_id?: string;
}
export interface Icons {
image_36?: string;
image_48?: string;
image_72?: string;
}
//# sourceMappingURL=BotsInfoResponse.d.ts.map