data-structure-typed/src/interfaces/graph.ts

8 lines
218 B
TypeScript
Raw Normal View History

2023-10-10 19:55:52 +08:00
import {VertexKey} from '../types';
export interface IGraph<V, E> {
createVertex(key: VertexKey, val?: V): V;
createEdge(srcOrV1: VertexKey | string, destOrV2: VertexKey | string, weight?: number, val?: E): E;
}