Node filters not loading while editing the select directive list
[sdc.git] / catalog-ui / src / typings / cytoscape / edge-editation.d.ts
1 /**
2  * Created by obarda on 11/6/2016.
3  */
4
5 interface CytoscapeEdgeEditation {
6     new(): CytoscapeEdgeEditation;
7
8     init(cy: Cy.Instance, handleSize?: number):void;
9     registerHandle(handle: Handle): void;
10 }
11
12 interface Handle {
13     positionX: string,
14     positionY: string,
15     offsetX?: number,
16     offsetY?: number,
17     color: string,
18     type: string,
19     single: boolean,
20     nodeTypeNames: Array<string>;
21     imageUrl: string;
22     lineWidth: number;
23     lineStyle: string;
24 }
25
26 declare var CytoscapeEdgeEditation: CytoscapeEdgeEditation;
27