forked from pu428f3pz/InternshipProject
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
473 B
13 lines
473 B
/// <reference types="react" />
|
|
import type { GenerateConfig } from '../../generate';
|
|
export declare const DECADE_COL_COUNT = 3;
|
|
export declare type YearBodyProps<DateType> = {
|
|
prefixCls: string;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
viewDate: DateType;
|
|
disabledDate?: (date: DateType) => boolean;
|
|
onSelect: (value: DateType) => void;
|
|
};
|
|
declare function DecadeBody<DateType>(props: YearBodyProps<DateType>): JSX.Element;
|
|
export default DecadeBody;
|