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.
19 lines
687 B
19 lines
687 B
import * as React from 'react';
|
|
import { GenerateConfig } from '../../generate';
|
|
import { Locale, OnSelect } from '../../interface';
|
|
import { SharedTimeProps } from '.';
|
|
export interface BodyOperationRef {
|
|
onUpDown: (diff: number) => void;
|
|
}
|
|
export interface TimeBodyProps<DateType> extends SharedTimeProps<DateType> {
|
|
prefixCls: string;
|
|
locale: Locale;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
value?: DateType | null;
|
|
onSelect: OnSelect<DateType>;
|
|
activeColumnIndex: number;
|
|
operationRef: React.MutableRefObject<BodyOperationRef | undefined>;
|
|
}
|
|
declare function TimeBody<DateType>(props: TimeBodyProps<DateType>): JSX.Element;
|
|
export default TimeBody;
|