UNPKG

reaviz

Version:

Data Visualization using React

15 lines (14 loc) 435 B
import { PropsWithChildren, FC } from 'react'; interface MoveProps extends PropsWithChildren { cursor?: string; disabled?: boolean; preventRightClick: boolean; disableText: boolean; threshold: number; onMoveStart: (event: any) => void; onMove: (event: any) => void; onMoveCancel: (event: any) => void; onMoveEnd: (event: any) => void; } export declare const Move: FC<Partial<MoveProps>>; export {};