UNPKG

slack-web-api-client

Version:
20 lines 571 B
import type { SlackAPIResponse } from "../response"; export type AdminRolesListAssignmentsResponse = SlackAPIResponse & { error?: string; needed?: string; ok: boolean; provided?: string; response_metadata?: ResponseMetadata; role_assignments?: RoleAssignment[]; }; export interface ResponseMetadata { messages?: string[]; next_cursor?: string; } export interface RoleAssignment { date_create?: number; entity_id?: string; role_id?: string; user_id?: string; } //# sourceMappingURL=AdminRolesListAssignmentsResponse.d.ts.map