ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
15 lines (14 loc) • 470 B
TypeScript
import { CSSProperties, FunctionalComponent } from 'vue';
export interface TransferOperationProps {
class?: any;
leftArrowText?: string;
rightArrowText?: string;
moveToLeft?: (e: MouseEvent) => void;
moveToRight?: (e: MouseEvent) => void;
leftActive?: boolean;
rightActive?: boolean;
style?: CSSProperties | string;
disabled?: boolean;
}
declare const Operation: FunctionalComponent<TransferOperationProps>;
export default Operation;