1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type ImOpenResponse = WebAPICallResult & {
|
3 | already_open?: boolean;
|
4 | channel?: Channel;
|
5 | error?: string;
|
6 | needed?: string;
|
7 | no_op?: boolean;
|
8 | ok?: boolean;
|
9 | provided?: string;
|
10 | response_metadata?: ResponseMetadata;
|
11 | warning?: string;
|
12 | };
|
13 | export interface Channel {
|
14 | id?: string;
|
15 | }
|
16 | export interface ResponseMetadata {
|
17 | messages?: string[];
|
18 | warnings?: string[];
|
19 | }
|
20 | //# sourceMappingURL=ImOpenResponse.d.ts.map |
\ | No newline at end of file |