fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
26 lines (25 loc) • 692 B
TypeScript
import { Component } from 'react';
import './modules';
import './util/animation';
import './styles/toolstyle.scss';
import './styles/vowl.scss';
import './styles/zoomSlider.scss';
export interface KnowledgeGraphProps {
data: object;
width: any;
height: any;
className?: any;
}
export declare class KnowledgeGraph extends Component<KnowledgeGraphProps> {
static defaultProps: {};
graph: any;
graphData: any;
GRAPH_SELECTOR: string;
constructor(props: any);
initialize: () => void;
getGraph: () => any;
componentDidMount(): void;
render(): JSX.Element;
adjustSize: () => void;
isTouchDevice: () => boolean;
}