planby
Version:
<div align="center" style="margin-bottom: 10px"> <a href="https://www.npmjs.com/package/planby"> <img src="https://i.postimg.cc/J0XMPHNQ/planby-logo.png" alt="Planby logo" /> </a> </div>
15 lines (14 loc) • 538 B
TypeScript
/// <reference types="react" />
import { BaseTimeFormat } from "../helpers/types";
interface TimelineProps {
isRTL?: boolean;
isBaseTimeFormat: BaseTimeFormat;
isSidebar: boolean;
dayWidth: number;
hourWidth: number;
numberOfHoursInDay: number;
offsetStartHoursRange: number;
sidebarWidth: number;
}
export declare function Timeline({ isRTL, isBaseTimeFormat, isSidebar, dayWidth, hourWidth, numberOfHoursInDay, offsetStartHoursRange, sidebarWidth, }: TimelineProps): JSX.Element;
export {};