operation.d.ts 625 B

1234567891011121314151617
  1. import * as React from 'react';
  2. import type { DirectionType } from '../config-provider';
  3. export interface TransferOperationProps {
  4. className?: string;
  5. leftArrowText?: string;
  6. rightArrowText?: string;
  7. moveToLeft?: React.MouseEventHandler<HTMLButtonElement | HTMLAnchorElement>;
  8. moveToRight?: React.MouseEventHandler<HTMLButtonElement | HTMLAnchorElement>;
  9. leftActive?: boolean;
  10. rightActive?: boolean;
  11. style?: React.CSSProperties;
  12. disabled?: boolean;
  13. direction?: DirectionType;
  14. oneWay?: boolean;
  15. }
  16. declare const Operation: React.FC<TransferOperationProps>;
  17. export default Operation;