@syncfusion/ej2-vue-diagrams
Version:
Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.
29 lines (28 loc) • 710 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { PointPortModel } from '@syncfusion/ej2-diagrams';
export declare let PortsDirective: any;
export declare const PortsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* `e-port` directive represent a port of the vue Diagram.
* It must be contained in a Diagram component(`ejs-diagram`).
* ```html
* <ejs-diagram>
* <e-nodes>
* <e-node>
* <e-node-ports>
* <e-node-port>
* </e-node-port>
* </e-node-ports>
* </e-node>
* </e-nodes>
* </ejs-diagram>
* ```
*/
export declare let PortDirective: DefineVueDirective<PointPortModel>;
export declare const PortPlugin: {
name: string;
install(Vue: any): void;
};