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