slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
23 lines • 514 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type BotsInfoResponse = SlackAPIResponse & {
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