Outlook_Addin_LLM/node_modules/@fluentui/date-time-utilities/lib/dateGrid/isAfterMaxDate.d.ts

8 lines
301 B
TypeScript

import { IRestrictedDatesOptions } from './dateGrid.types';
/**
* Checks if `date` happens later than max date
* @param date - date to check
* @param options - object with max date to check against
*/
export declare const isAfterMaxDate: (date: Date, options: IRestrictedDatesOptions) => boolean;