UNPKG

antd

Version:

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

15 lines (14 loc) 450 B
/// <reference types="react" /> import * as React from 'react'; export interface TransferOperationProps { className?: string; leftArrowText?: string; rightArrowText?: string; moveToLeft?: React.FormEventHandler<any>; moveToRight?: React.FormEventHandler<any>; leftActive?: boolean; rightActive?: boolean; } export default class Operation extends React.Component<TransferOperationProps, any> { render(): JSX.Element; }