UNPKG

slack-web-api-client

Version:
15 lines 432 B
import type { SlackAPIResponse } from "../response"; export type AdminAuthPolicyGetEntitiesResponse = SlackAPIResponse & { entities?: Entity[]; entity_total_count?: number; error?: string; needed?: string; ok: boolean; provided?: string; }; export interface Entity { date_added?: number; entity_id?: string; entity_type?: string; } //# sourceMappingURL=AdminAuthPolicyGetEntitiesResponse.d.ts.map