/** * @author Martin Karkowski * @email m.karkowski@zema.de * @create date 2020-03-12 13:16:45 * @modify date 2020-03-12 13:16:45 * @desc [description] */ import { IBaseNodeOptions } from './IBaseNodeOptions'; export type IClusters = Array<{ /** * Nodes of the Cluster. Here the IDs of the Nodes. */ nodes: Array, /** * Contained Clusters */ clusters: Array, /** * Id of the Cluster */ id: string, /** * The Rendering Options of the Cluster */ options: IBaseNodeOptions, }>;