UNPKG

doubly-linked-list-typed

Version:
6 lines (5 loc) 218 B
import { VertexKey } from '../types'; export interface IGraph<V, E, VO, EO> { createVertex(key: VertexKey, value?: V): VO; createEdge(srcOrV1: VertexKey, destOrV2: VertexKey, weight?: number, value?: E): EO; }