UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

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