UNPKG

gantt-task-react-powern

Version:

Interactive Gantt Chart for React with TypeScript.

16 lines (15 loc) 491 B
import React from "react"; import { CalendarDefinition, ViewMode } from "../../types/public-types"; import { DateSetup } from "../../types/date-setup"; export declare type CalendarProps = { dateSetup: DateSetup; locale: string; viewMode: ViewMode; rtl: boolean; headerHeight: number; columnWidth: number; fontFamily: string; fontSize: string; projectCalendar?: CalendarDefinition; }; export declare const Calendar: React.FC<CalendarProps>;