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.
16 lines
578 B
16 lines
578 B
/// <reference types="react" />
|
|
import type { GenerateConfig } from '../../generate';
|
|
import type { Locale } from '../../interface';
|
|
export declare const QUARTER_COL_COUNT = 4;
|
|
export declare type QuarterBodyProps<DateType> = {
|
|
prefixCls: string;
|
|
locale: Locale;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
value?: DateType | null;
|
|
viewDate: DateType;
|
|
disabledDate?: (date: DateType) => boolean;
|
|
onSelect: (value: DateType) => void;
|
|
};
|
|
declare function QuarterBody<DateType>(props: QuarterBodyProps<DateType>): JSX.Element;
|
|
export default QuarterBody;
|