track/node_modules/pigeon-maps/lib/overlays/Draggable.d.ts

13 lines
432 B
TypeScript

import React from 'react';
import { PigeonProps, Point } from '../types';
interface DraggableProps extends PigeonProps {
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
onDragStart?: (anchor: Point) => void;
onDragMove?: (anchor: Point) => void;
onDragEnd?: (anchor: Point) => void;
}
export declare function Draggable(props: DraggableProps): JSX.Element;
export {};