UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

16 lines 474 B
import { WebAPICallResult } from '../WebClient'; export type AppsEventAuthorizationsListResponse = WebAPICallResult & { authorizations?: Authorization[]; error?: string; needed?: string; ok?: boolean; provided?: string; }; export interface Authorization { enterprise_id?: string; is_bot?: boolean; is_enterprise_install?: boolean; team_id?: string; user_id?: string; } //# sourceMappingURL=AppsEventAuthorizationsListResponse.d.ts.map