@slack/web-api
Version:
Official library for using the Slack Platform's Web API
20 lines • 441 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type RtmConnectResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
provided?: string;
self?: Self;
team?: Team;
url?: string;
};
export interface Self {
id?: string;
name?: string;
}
export interface Team {
domain?: string;
id?: string;
name?: string;
}
//# sourceMappingURL=RtmConnectResponse.d.ts.map