fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
21 lines (20 loc) • 567 B
TypeScript
/// <reference types="node" />
import EventEmitter from 'events';
declare const eventBus: EventEmitter;
declare const EvtNames: {
Click: string;
changeZoomSliderVal: string;
hideAllMenu: string;
showAllMenu: string;
menuAdd: string;
menuRemove: string;
menuQuery: string;
menuExplore: string;
menuExploreEvent: string;
menuExploreEntity: string;
menuExploreRelation: string;
menuExploreProps: string;
menuExploreExpand: string;
menuExploreCollapse: string;
};
export { eventBus, EvtNames };