UNPKG

542 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminInviteRequestsListResponse = WebAPICallResult & {
3 error?: string;
4 invite_requests?: InviteRequest[];
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8};
9export interface InviteRequest {
10 channel_ids?: string[];
11 date_created?: number;
12 date_expire?: number;
13 email?: string;
14 id?: string;
15 invite_type?: string;
16 request_reason?: string;
17 requester_ids?: string[];
18}
19//# sourceMappingURL=AdminInviteRequestsListResponse.d.ts.map
\No newline at end of file