choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
13 lines (12 loc) • 414 B
TypeScript
import { FormEventHandler, FunctionComponent } from 'react';
export interface TransferOperationProps {
className?: string;
leftArrowText?: string;
rightArrowText?: string;
moveToLeft?: FormEventHandler<any>;
moveToRight?: FormEventHandler<any>;
leftActive?: boolean;
rightActive?: boolean;
}
declare const Operation: FunctionComponent<TransferOperationProps>;
export default Operation;