@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
20 lines (19 loc) • 905 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { Occurrence, Group, Range, Item, Slot } from '../models/index.js';
/** @hidden */
export declare const toItems: (occurrences: Occurrence[], { timezone }: any, { groups, ranges }: {
groups: Group[];
ranges: Range[];
}) => Item[];
/** @hidden */
export declare const inGroup: (occurrence: Occurrence, group: Group) => boolean;
/** @hidden */
export declare const inSlot: (occurrence: Occurrence, slot: Slot) => boolean;
/** @hidden */
export declare const inRange: (occurrence: Occurrence, range: Range) => boolean;