UNPKG

608 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export 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};
13export interface Message {
14 subtype?: string;
15 text?: string;
16 ts?: string;
17 type?: string;
18 user?: string;
19}
20export interface ResponseMetadata {
21 messages?: string[];
22 warnings?: string[];
23}
24//# sourceMappingURL=GroupsHistoryResponse.d.ts.map
\No newline at end of file