UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

23 lines (22 loc) 603 B
/** * This module abuses the filter function a bit like the statistics module. Nothing is filtered. * * @returns {{}} */ export declare class CompactNotationSwitch { graph: any; constructor(graph: any); DEFAULT_STATE: boolean; nodes: any; properties: any; enabled: boolean; filteredNodes: any; filteredProperties: any; /** * If enabled, redundant details won't be drawn anymore. * @param untouchedNodes * @param untouchedProperties */ filter(untouchedNodes: any, untouchedProperties: any): void; reset(): void; }