UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

13 lines 353 B
import { WebAPICallResult } from '../WebClient'; export type FilesCompleteUploadExternalResponse = WebAPICallResult & { error?: string; files?: File[]; needed?: string; ok?: boolean; provided?: string; }; export interface File { id?: string; title?: string; } //# sourceMappingURL=FilesCompleteUploadExternalResponse.d.ts.map