@fluentui/react-northstar
Version:
A themable React component library.
5 lines (4 loc) • 523 B
TypeScript
import { IRestrictedDatesOptions } from '../../utils/date-time-utilities';
export declare type NavigationKind = 'Month' | 'Week' | 'Day';
export declare const contstraintNavigatedDate: (initialDate: Date, targetDate: Date, direction: number, restrictedDatesOptions: IRestrictedDatesOptions, navigateToDisabledDates: boolean) => Date;
export declare const navigateToNewDate: (originalDate: Date, kind: NavigationKind, step: number, restrictedDatesOptions: IRestrictedDatesOptions, navigateToDisabledDates: boolean) => Date;