fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
19 lines (18 loc) • 436 B
TypeScript
export declare class SelectionDetailsDisplayer {
handlerFunction: any;
lastSelectedElement: any;
/**
*
* @param handlerFunction sidebar.updateSelectionInformation
*/
constructor(handlerFunction: any);
/**
*
* @param selectedElement
*/
handle(selectedElement: any): void;
/**
* Resets the displayed information to its default.
*/
reset(): void;
}