data-structure-typed/src/interfaces/graph.ts
2023-10-30 20:08:25 +08:00

8 lines
210 B
TypeScript

import {VertexKey} from '../types';
export interface IGraph<V, E, VO, EO> {
createVertex(key: VertexKey, val?: V): VO;
createEdge(srcOrV1: VertexKey, destOrV2: VertexKey, weight?: number, val?: E): EO;
}