UNPKG

@syncfusion/ej2-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.

34 lines (33 loc) 883 B
/** * Overview component */ import { TestHelper } from '@syncfusion/ej2-base/helpers/e2e'; /** * Represents the Overview helpers. */ export declare class OverviewHelper extends TestHelper { /** * Specifies the ID of the overview. */ id: string; /** * Specifies the current helper function of the overview. */ wrapperFn: Function; /** * Constructor for creating the helper object for overview component. */ constructor(id: string, wrapperFn: Function); /** * Gets the overview element, which will have the overview objects like nodes, connectors, and more. */ getDiagramLayer(): any; /** * Gets the HTML layer element of the overview component, which will have the HTML node content. */ getHtmlLayer(): any; /** * Gets the overview handle elements. */ getHandle(): any; }