UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

18 lines 514 B
import { WebAPICallResult } from '../WebClient'; export type AdminConversationsBulkArchiveResponse = WebAPICallResult & { bulk_action_id?: string; error?: string; needed?: string; not_added?: NotAdded[]; ok?: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface NotAdded { channel_id?: string; errors?: string[]; } export interface ResponseMetadata { messages?: string[]; } //# sourceMappingURL=AdminConversationsBulkArchiveResponse.d.ts.map