UNPKG

441 BTypeScriptView Raw
1import type { WebAPICallResult } from '../../WebClient';
2export type RtmConnectResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 self?: Self;
8 team?: Team;
9 url?: string;
10};
11export interface Self {
12 id?: string;
13 name?: string;
14}
15export interface Team {
16 domain?: string;
17 id?: string;
18 name?: string;
19}
20//# sourceMappingURL=RtmConnectResponse.d.ts.map
\No newline at end of file