UNPKG

@progress/kendo-react-scheduler

Version:

React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package

21 lines (20 loc) 850 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Slot } from '../../models/index.js'; import { TimeHeaderCellProps } from '../../components/TimeHeaderCell.js'; import * as React from 'react'; /** @hidden */ export interface DayViewRowContentArgs { children?: React.ReactNode; slot: Slot; isMaster?: boolean; isLast?: boolean; timeHeaderCell?: React.ComponentType<TimeHeaderCellProps>; } /** @hidden */ export declare const DayViewRowContent: (props: DayViewRowContentArgs) => React.JSX.Element;