@slack/web-api
Version:
Official library for using the Slack Platform's Web API
14 lines • 402 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type AdminRolesAddAssignmentsResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
rejected_users?: RejectedUser[];
warning?: string;
};
export interface RejectedUser {
error?: string;
id?: string;
}
//# sourceMappingURL=AdminRolesAddAssignmentsResponse.d.ts.map