@josmangarsal/pragmatic-scheduler
Version:
React resource scheduler
11 lines (10 loc) • 541 B
TypeScript
import { SchedulerViewControlsProps } from '../types';
export declare const useSchedulerIntervals: (activeDate: Date, { startDate, setStartDate, endDate, setEndDate, interval }?: SchedulerViewControlsProps) => {
controls: import("@emotion/react/jsx-runtime").JSX.Element | null;
currentInterval: number;
extendFrom: () => void;
extendTo: () => void;
changeDates: (newStartDate: Date, newEndDate: Date) => void;
config: import("../types").Config;
divisionDetails: import("../types").DivisionDetail[];
};