nope/resources/ui/graph/interfaces/IClusters.ts
2020-10-25 21:14:51 +01:00

28 lines
570 B
TypeScript

/**
* @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<string>,
/**
* Contained Clusters
*/
clusters: Array<string>,
/**
* Id of the Cluster
*/
id: string,
/**
* The Rendering Options of the Cluster
*/
options: IBaseNodeOptions,
}>;