react-calendar-timeline
Version:
react-calendar-timeline
14 lines (13 loc) • 537 B
TypeScript
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;