1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type GroupsHistoryResponse = WebAPICallResult & {
|
3 | channel_actions_count?: number;
|
4 | error?: string;
|
5 | has_more?: boolean;
|
6 | messages?: Message[];
|
7 | needed?: string;
|
8 | ok?: boolean;
|
9 | provided?: string;
|
10 | response_metadata?: ResponseMetadata;
|
11 | warning?: string;
|
12 | };
|
13 | export interface Message {
|
14 | subtype?: string;
|
15 | text?: string;
|
16 | ts?: string;
|
17 | type?: string;
|
18 | user?: string;
|
19 | }
|
20 | export interface ResponseMetadata {
|
21 | messages?: string[];
|
22 | warnings?: string[];
|
23 | }
|
24 |
|
\ | No newline at end of file |