@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
22 lines (21 loc) • 826 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 { SchedulerProps } from '../Scheduler.js';
/**
* Represents the Object which is passed to the [`ref`](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) callback of the Scheduler component.
*/
export interface SchedulerHandle {
/**
* The props of the Scheduler component.
*/
props: SchedulerProps;
/**
* The HTML element of the Scheduler component.
*/
element: HTMLDivElement | null;
}