import "../ApiClient-fBZ10h6n.mjs"; import "../AbstractGraphBranchType-BVHNIylw.mjs"; import { t as AbstractGraph_default } from "../AbstractGraph-CV9srXKU.mjs"; //#region src/model/FlowGraphCluster.d.ts type IFlowGraphCluster = { cluster: AbstractGraph_default; nodes: Array; parents: Array; start: string; end: string; }; /** * @typedef {Object} IFlowGraphCluster * @property {AbstractGraph} cluster * @property {Array.} nodes * @property {Array.} parents * @property {String} start * @property {String} end */ /** * The FlowGraphCluster model module. * @module model/FlowGraphCluster * @type {IFlowGraphCluster} */ declare class FlowGraphCluster { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any): void; /** * Constructs a FlowGraphCluster from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/FlowGraphCluster} obj Optional instance to populate. * @return {module:model/FlowGraphCluster} The populated FlowGraphCluster instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to FlowGraphCluster. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to FlowGraphCluster. */ static validateJSON(data: any): boolean; cluster: AbstractGraph_default; nodes: string[]; parents: string[]; start: string; end: string; } //#endregion export { IFlowGraphCluster, FlowGraphCluster as default };