UNPKG

@onesy/ui-react

Version:
12 lines (11 loc) 372 B
import React from 'react'; import { IBaseElement } from '../types'; export declare type IMove = IBaseElement & { version?: 'regular' | 'fixed'; manage?: boolean; manageLevel?: number; onMouseDown?: (event: React.MouseEvent<any>) => any; onTouchStart?: (event: React.TouchEvent<any>) => any; }; declare const Move: React.FC<IMove>; export default Move;