@syncfusion/ej2-react-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.
23 lines (22 loc) • 694 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { LayerModel } from '@syncfusion/ej2-diagrams';
/**
* `Layers Directive` directive represent a connectors of the react diagram.
* It must be contained in a Diagram component(`DiagramComponent`).
* ```tsx
* <DiagramComponent>
* <LayersDirective>
* <LayerDirective></LayerDirective>
* </LayersDirective>
* </DiagramComponent>
* ```
*/
export declare class LayerDirective extends ComplexBase<LayerModel & {
children?: React.ReactNode;
}, LayerModel> {
static moduleName: string;
}
export declare class LayersDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}