@slack/web-api
Version:
Official library for using the Slack Platform's Web API
27 lines • 665 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type CallsEndResponse = WebAPICallResult & {
call?: Call;
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
};
export interface Call {
channels?: string[];
date_end?: number;
date_start?: number;
desktop_app_join_url?: string;
external_display_id?: string;
external_unique_id?: string;
id?: string;
join_url?: string;
title?: string;
users?: User[];
}
export interface User {
avatar_url?: string;
display_name?: string;
external_id?: string;
slack_id?: string;
}
//# sourceMappingURL=CallsEndResponse.d.ts.map