UNPKG

@progress/kendo-react-layout

Version:

React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package

23 lines (22 loc) 785 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 { TimelineEventProps } from './Timeline.js'; /** * Sort the events list based on event date. */ export declare const sortEventList: (eventList: TimelineEventProps[]) => TimelineEventProps[]; /** * @hidden */ export interface yearFlagProps { yearFlag?: number; } /** * @hidden */ export declare const addYearsFlags: (eventsData: TimelineEventProps[]) => (TimelineEventProps | yearFlagProps)[];