UNPKG

choerodon-ui

Version:

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

13 lines (12 loc) 449 B
import { FormEventHandler, FunctionComponent, ReactNode } from 'react'; export interface TransferOperationProps { className?: string; leftArrowText?: string | ReactNode; rightArrowText?: string | ReactNode; moveToLeft?: FormEventHandler<any>; moveToRight?: FormEventHandler<any>; leftActive?: boolean; rightActive?: boolean; } declare const Operation: FunctionComponent<TransferOperationProps>; export default Operation;