UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

11 lines (10 loc) 320 B
import { FunctionComponent, ReactNode } from 'react'; export interface QuickJumperProps { prefixCls?: string; disabled?: boolean; value?: number; onChange?: (value: number) => void; gotoButton?: ReactNode; } declare const QuickJumper: FunctionComponent<QuickJumperProps>; export default QuickJumper;