UNPKG

@huynhduluong/gantt-task-react

Version:

Interactive Gantt Chart for React with TypeScript

15 lines (14 loc) 428 B
import React from "react"; import { 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; }; export declare const Calendar: React.FC<CalendarProps>;