UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

19 lines (18 loc) 670 B
import type { GenerateConfig } from '../../generate'; import type { Locale, NullableDateType } from '../../interface'; export declare const YEAR_COL_COUNT = 3; export type YearBodyProps<DateType> = { prefixCls: string; locale: Locale; generateConfig: GenerateConfig<DateType>; value?: NullableDateType<DateType>; viewDate: DateType; disabledDate?: (date: DateType) => boolean; onSelect: (value: DateType) => void; }; declare function YearBody<DateType>(_props: YearBodyProps<DateType>): import("vue/jsx-runtime").JSX.Element; declare namespace YearBody { var displayName: string; var inheritAttrs: boolean; } export default YearBody;