fui-fancyui
Version:
FancyUI Libary
14 lines (13 loc) • 508 B
TypeScript
import { TDateArray } from '../../../Calendar';
import { IDisabledDateSettings } from '../types/IDisableDateSettings.model';
import { IDateWithExternalState } from '../types/IExternalMonthWithDays.model';
export type TCreateDaysOfMonth = {
monthIdx: number;
year: number;
selectedDates: TDateArray;
disabledDateSetting?: IDisabledDateSettings;
isRangePicking?: boolean;
externalMonthWithDays?: IDateWithExternalState[];
fillAdjacentMonths?: boolean;
weekStartsOn?: number;
};