UNPKG

react-financial-charts

Version:
20 lines (19 loc) 586 B
import * as React from "react"; interface DrawingObjectSelectorProps { readonly getInteractiveNodes: any; readonly onSelect: any; readonly onDoubleClick: any; readonly drawingObjectMap: object; readonly enabled: boolean; } export declare class DrawingObjectSelector extends React.Component<DrawingObjectSelectorProps> { static defaultProps: { enabled: boolean; onDoubleClick: () => void; }; render(): JSX.Element; private readonly getInteraction; private readonly handleClick; private readonly handleDoubleClick; } export {};