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