UNPKG

react-calendar-timeline

Version:
9 lines (8 loc) 307 B
import { HTMLAttributes } from 'react'; import { Interval } from '../types/main'; export type GetIntervalPropsParams = { interval: Interval; } & HTMLAttributes<HTMLDivElement>; export type GetIntervalPropsType = (props?: GetIntervalPropsParams) => HTMLAttributes<HTMLDivElement> & { key: string; };