UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

17 lines (16 loc) 446 B
import { PureComponent } from 'react'; interface BrushHandleProps { height: number; onHandleDrag: (deltaX: number) => void; } interface BrushHandleState { isDragging: boolean; } export declare class BrushHandle extends PureComponent<BrushHandleProps, BrushHandleState> { state: BrushHandleState; onMoveStart(): void; onMove(event: any): void; onMoveEnd(): void; render(): JSX.Element; } export {};