UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

8 lines 170 B
/** * Graph node interface for priority queue operations */ export interface graphNode<T> { node: T; distance: number; } //# sourceMappingURL=graphNode.d.ts.map