ecljs
Version:
electric circuits library
23 lines (22 loc) • 710 B
TypeScript
import { Rect } from "dabbjs/dist/lib/rect";
import { IFlowProcessDefaults } from "./interfaces";
import { FlowComp } from "./flowComp";
import { Flowchart } from "./flowchart";
export declare class FlowProcess extends FlowComp {
protected $: IFlowProcessDefaults;
/**
* contains the main frame body, where full component size can be calculated
*/
get body(): SVGElement;
/**
* client rect where text should be safely contained
*/
get clientRect(): Rect;
constructor(flowchart: Flowchart, options: {
[x: string]: any;
});
/**
* @description refreshes flowchart location, size, and updates bonded cmoponents
*/
refresh(): FlowProcess;
}