fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
19 lines (18 loc) • 523 B
TypeScript
/**
* A label represents the element(s) which further describe a link.
* It encapsulates the property and its inverse property.
* @param property the property; the inverse is inferred
* @param link the link this label belongs to
*/
export declare class Label {
property: any;
link: any;
frozen: any;
locked: any;
pinned: any;
constructor(property: any, link: any);
actualRadius(): any;
draw(container: any): any;
inverse(): any;
equals(other: any): boolean;
}