UNPKG

@graphty/algorithms

Version:

Graph algorithms library for browser environments implemented in TypeScript

8 lines (7 loc) 131 B
/** * Graph node interface for priority queue operations */ export interface graphNode<T> { node: T; distance: number; }