mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2025-04-04 08:54:04 +00:00
8 lines
210 B
TypeScript
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;
|
|
}
|