UNPKG

slack-web-api-client

Version:
16 lines 406 B
import type { SlackAPIResponse } from "../response"; export type DndTeamInfoResponse = SlackAPIResponse & { error?: string; needed?: string; ok: boolean; provided?: string; users?: { [key: string]: User; }; }; export interface User { dnd_enabled?: boolean; next_dnd_end_ts?: number; next_dnd_start_ts?: number; } //# sourceMappingURL=DndTeamInfoResponse.d.ts.map