UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

27 lines 642 B
import type { WebAPICallResult } from '../../WebClient'; export type BotsInfoResponse = WebAPICallResult & { bot?: Bot; error?: string; needed?: string; ok?: boolean; provided?: string; warning?: string; }; export interface Bot { app_id?: string; deleted?: boolean; icons?: Icons; id?: string; is_connector_bot?: boolean; is_legacy_workflow_bot?: boolean; is_workflow_bot?: boolean; name?: string; updated?: number; user_id?: string; } export interface Icons { image_36?: string; image_48?: string; image_72?: string; } //# sourceMappingURL=BotsInfoResponse.d.ts.map