UNPKG

react-native-calendars

Version:
9 lines (8 loc) 312 B
import React from 'react'; import { CalendarProps } from '../calendar'; import { CalendarContextProps } from './Context'; export type WeekProps = CalendarProps & { context?: CalendarContextProps; }; declare const Week: React.MemoExoticComponent<(props: WeekProps) => React.JSX.Element>; export default Week;