UNPKG

501 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export 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};
13export interface Channel {
14 id?: string;
15}
16export interface ResponseMetadata {
17 messages?: string[];
18 warnings?: string[];
19}
20//# sourceMappingURL=ImOpenResponse.d.ts.map
\No newline at end of file