operation.d.ts 580 B

1234567891011121314151617
  1. import type { CSSProperties, FunctionalComponent } from 'vue';
  2. import type { Direction } from '../config-provider';
  3. export interface TransferOperationProps {
  4. class?: string;
  5. leftArrowText?: string;
  6. rightArrowText?: string;
  7. moveToLeft?: (e: MouseEvent) => void;
  8. moveToRight?: (e: MouseEvent) => void;
  9. leftActive?: boolean;
  10. rightActive?: boolean;
  11. style?: CSSProperties | string;
  12. disabled?: boolean;
  13. direction?: Direction;
  14. oneWay?: boolean;
  15. }
  16. declare const Operation: FunctionalComponent<TransferOperationProps>;
  17. export default Operation;