UNPKG

@gem-mine/rmc-calendar

Version:

React Mobile Calendar Component(web and react-native)

15 lines (14 loc) 484 B
/// <reference types="react" /> import PropsType from './CalendarPanelProps'; import Component from './CalendarPanel.base'; import { Models } from './DataTypes'; export { PropsType }; export default class CalendarPanelSwiper extends Component { panel: HTMLDivElement; transform: string; now: Date; today: Date; genMonthComponent: (data?: Models.MonthData | undefined) => JSX.Element | undefined; afterSlide: (num: number) => void; render(): JSX.Element; }