UNPKG

669 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AuthTeamsListResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 response_metadata?: ResponseMetadata;
8 teams?: Team[];
9};
10export interface ResponseMetadata {
11 next_cursor?: string;
12}
13export interface Team {
14 icon?: Icon;
15 id?: string;
16 name?: string;
17}
18export interface Icon {
19 image_102?: string;
20 image_132?: string;
21 image_230?: string;
22 image_34?: string;
23 image_44?: string;
24 image_68?: string;
25 image_88?: string;
26 image_default?: boolean;
27}
28//# sourceMappingURL=AuthTeamsListResponse.d.ts.map
\No newline at end of file