slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
19 lines • 490 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type AuthTestResponse = SlackAPIResponse & {
app_id?: string;
app_name?: string;
bot_id?: string;
enterprise_id?: string;
error?: string;
expires_in?: number;
is_enterprise_install?: boolean;
needed?: string;
ok: boolean;
provided?: string;
team?: string;
team_id?: string;
url?: string;
user?: string;
user_id?: string;
};
//# sourceMappingURL=AuthTestResponse.d.ts.map