UNPKG

@panyam/priorityq

Version:

A Priority Queue implementation with O(1) lookups for lookup by value.

12 lines (11 loc) 289 B
import * as List from "./list"; import * as BinHeap from "./binheap"; import * as Storage from "./storage"; import { PQ } from "./pq"; declare const _default: { Storage: typeof Storage; List: typeof List; BinHeap: typeof BinHeap; PQ: typeof PQ; }; export default _default;