slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
15 lines • 432 B
TypeScript
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