react-native-lunar-calendars
Version:
React Native Calendar Components with Lunar Calendar Support - Fork of react-native-calendars with Vietnamese lunar calendar functionality
21 lines (20 loc) • 708 B
TypeScript
export default Day;
declare class Day extends React.Component<any, any, any> {
static propTypes: {
state: PropTypes.Requireable<string>;
theme: PropTypes.Requireable<object>;
marking: PropTypes.Requireable<any>;
onPress: PropTypes.Requireable<(...args: any[]) => any>;
onLongPress: PropTypes.Requireable<(...args: any[]) => any>;
date: PropTypes.Requireable<object>;
};
constructor(props: any);
style: any;
onDayPress(): void;
onDayLongPress(): void;
shouldComponentUpdate(nextProps: any): boolean;
renderDots(marking: any): any;
render(): React.JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';