Trilium Frontend API
    Preparing search index...

    Interface DateProfileGeneratorProps

    interface DateProfileGeneratorProps {
        calendarApi: CalendarApiImpl;
        dateAlignment?: string;
        dateEnv: DateEnv;
        dateIncrement?: Duration;
        dateProfileGeneratorClass: DateProfileGeneratorClass;
        dayCount?: number;
        duration: Duration;
        durationUnit: string;
        fixedWeekCount?: boolean;
        hiddenDays?: number[];
        showNonCurrentDates?: boolean;
        slotMaxTime: Duration;
        slotMinTime: Duration;
        usesMinMaxTime: boolean;
        validRangeInput?:
            | DateRangeInput
            | ((this: CalendarApiImpl, nowDate: Date) => DateRangeInput);
        visibleRangeInput?:
            | DateRangeInput
            | ((this: CalendarApiImpl, nowDate: Date) => DateRangeInput);
        weekends?: boolean;
    }

    Hierarchy (View Summary)

    Index
    calendarApi: CalendarApiImpl
    dateAlignment?: string
    dateEnv: DateEnv
    dateIncrement?: Duration
    dateProfileGeneratorClass: DateProfileGeneratorClass
    dayCount?: number
    duration: Duration
    durationUnit: string
    fixedWeekCount?: boolean
    hiddenDays?: number[]
    showNonCurrentDates?: boolean
    slotMaxTime: Duration
    slotMinTime: Duration
    usesMinMaxTime: boolean
    validRangeInput?:
        | DateRangeInput
        | ((this: CalendarApiImpl, nowDate: Date) => DateRangeInput)
    visibleRangeInput?:
        | DateRangeInput
        | ((this: CalendarApiImpl, nowDate: Date) => DateRangeInput)
    weekends?: boolean