UNPKG

406 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type DndTeamInfoResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 users?: {
8 [key: string]: User;
9 };
10};
11export interface User {
12 dnd_enabled?: boolean;
13 next_dnd_end_ts?: number;
14 next_dnd_start_ts?: number;
15}
16//# sourceMappingURL=DndTeamInfoResponse.d.ts.map
\No newline at end of file