UNPKG

react-native-lunar-calendars

Version:

React Native Calendar Components with Lunar Calendar Support - Fork of react-native-calendars with Vietnamese lunar calendar functionality

15 lines (14 loc) 426 B
interface CalendarProps { selected?: string[]; markedDates?: any; hideExtraDays?: boolean; minDate?: string; maxDate?: string; current?: string; [key: string]: any; } interface CalendarState { currentMonth: string; } export default function shouldComponentUpdate(nextProps: CalendarProps, nextState: CalendarState, currentProps: CalendarProps, currentState: CalendarState): boolean; export {};