UNPKG

783 BPlain TextView Raw
1import type { Props as ArrowProps } from '../Components/Arrow';
2import type { Props as TitleProps } from '../Components/Title';
3import type { Props as MonthProps } from '../Components/Month';
4import type { Props as DayProps } from '../Components/Day';
5import type { Props as WeekdaysProps } from '../Components/Weekdays';
6
7export type ArrowComponentType = (props: ArrowProps) => JSX.Element | null;
8export type TitleComponentType = (props: TitleProps) => JSX.Element | null;
9export type MonthComponentType = (props: MonthProps) => JSX.Element | null;
10export type DayComponentType = (props: DayProps) => JSX.Element | null;
11export type WeekdaysComponentType = (props: WeekdaysProps) => JSX.Element | null;
12
13export type { ArrowProps, TitleProps, MonthProps, DayProps, WeekdaysProps };