UNPKG

slack-web-api-client

Version:
18 lines 497 B
import type { SlackAPIResponse } from "../response"; export type AdminWorkflowsCollaboratorsAddResponse = SlackAPIResponse & { error?: string; errors?: Error[]; needed?: string; ok: boolean; provided?: string; response_metadata?: ResponseMetadata; }; export interface Error { message?: string; user?: string; workflow?: string; } export interface ResponseMetadata { messages?: string[]; } //# sourceMappingURL=AdminWorkflowsCollaboratorsAddResponse.d.ts.map