slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
14 lines • 398 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AdminWorkflowsCollaboratorsRemoveResponse = SlackAPIResponse & {
error?: string;
errors?: Error[];
needed?: string;
ok: boolean;
provided?: string;
};
export interface Error {
message?: string;
user?: string;
workflow?: string;
}
//# sourceMappingURL=AdminWorkflowsCollaboratorsRemoveResponse.d.ts.map