UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

15 lines (14 loc) 544 B
/// <reference types="react" /> import type { Dayjs } from 'dayjs'; import type { CalendarProps } from './generateCalendar'; import generateCalendar from './generateCalendar'; declare const Calendar: { (props: CalendarProps<Dayjs>): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; displayName: string; }; export type CalendarType = typeof Calendar & { generateCalendar: typeof generateCalendar; }; export type { CalendarProps }; declare const _default: CalendarType; export default _default;