slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
15 lines • 416 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type MigrationExchangeResponse = SlackAPIResponse & {
enterprise_id?: string;
error?: string;
invalid_user_ids?: string[];
needed?: string;
ok: boolean;
provided?: string;
team_id?: string;
user_id_map?: {
[key: string]: string;
};
warning?: string;
};
//# sourceMappingURL=MigrationExchangeResponse.d.ts.map