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

9 lines
457 B
TypeScript
Raw Normal View History

import { DayOfWeek } from '../dateValues/dateValues';
/**
* Returns whether provided week days are contiguous.
* @param days - list of days in a week
* @param isSingleWeek - decides whether the contiguous logic applies across week boundaries or not
* @param firstDayOfWeek - decides which day of week is the first one in the order.
*/
export declare const isContiguous: (days: DayOfWeek[], isSingleWeek: boolean, firstDayOfWeek: DayOfWeek) => boolean;