UNPKG

@aplus-frontend/antdv

Version:

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

13 lines (12 loc) 497 B
import type { Components, Locale } from '../interface'; export type RangesProps = { prefixCls: string; components?: Components; needConfirmButton: boolean; onNow?: null | (() => void) | false; onOk?: null | (() => void) | false; okDisabled?: boolean; showNow?: boolean; locale: Locale; }; export default function getRanges({ prefixCls, components, needConfirmButton, onNow, onOk, okDisabled, showNow, locale, }: RangesProps): import("vue/jsx-runtime").JSX.Element;