UNPKG

react-calendar-timeline

Version:
14 lines (13 loc) 537 B
import { SubscribeReturn } from '../TimelineMarkersContext'; import { MarkerRendererType, MarkerType } from '../markerType'; export type TodayMarkerProps = { interval?: number; updateMarker: (marker: MarkerType) => void; subscribeMarker: (m: MarkerType) => SubscribeReturn; children?: MarkerRendererType; }; declare const TodayMarkerWrapper: { (props: Omit<TodayMarkerProps, "updateMarker" | "subscribeMarker">): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default TodayMarkerWrapper;