Files
starface-outlook-sync-addin/node_modules/@fluentui/date-time-utilities/lib-amd/dateGrid/isRestrictedDate.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

8 lines
343 B
TypeScript

import { IRestrictedDatesOptions } from './dateGrid.types';
/**
* Checks if `date` falls into the restricted `options`
* @param date - date to check
* @param options - restriction options (min date, max date and list of restricted dates)
*/
export declare const isRestrictedDate: (date: Date, options: IRestrictedDatesOptions) => boolean;