import { Vertex, Edge, Graph } from "graphlabs.core.graphs"; import { GeometricVertex } from "./GeometricVertex"; import { GeometricEdge } from "./GeometricEdge"; /** * @classdesc Geometric graph to describe a graph visualisation */ export declare class GeometricGraph, K extends Vertex, R extends Edge> { graph: T; /** * @public Vertices on the screen */ vertices: GeometricVertex[]; /** * @public Edges on the screen */ edges: GeometricEdge[]; /** * @public Id of Geometric graph */ graphId: number; /** * @constructor * @param graph */ constructor(graph: T); }