react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
13 lines (12 loc) • 853 B
TypeScript
/// <reference types="react" />
import type { Props as ArrowProps } from '../Components/Arrow';
import type { Props as TitleProps } from '../Components/Title';
import type { Props as MonthProps } from '../Components/Month';
import type { Props as DayProps } from '../Components/Day';
import type { Props as WeekdaysProps } from '../Components/Weekdays';
export declare type ArrowComponentType = (props: ArrowProps) => JSX.Element | null;
export declare type TitleComponentType = (props: TitleProps) => JSX.Element | null;
export declare type MonthComponentType = (props: MonthProps) => JSX.Element | null;
export declare type DayComponentType = (props: DayProps) => JSX.Element | null;
export declare type WeekdaysComponentType = (props: WeekdaysProps) => JSX.Element | null;
export type { ArrowProps, TitleProps, MonthProps, DayProps, WeekdaysProps };