| 3 | import { LegacyOptions } from './minPriorityQueue'; |
| 4 | |
| 5 | export interface MaxPriorityQueue<T> extends PriorityQueue<T> { |
| 6 | enqueue(value: T): MaxPriorityQueue<T>; |
| 7 | push(value: T): MaxPriorityQueue<T>; |
| 8 | } |
| 9 | |
| 10 | export const MaxPriorityQueue: { |
| 11 | new <T>(options?: IGetCompareValue<T> | LegacyOptions<T> | null | undefined, values?: T[]): MaxPriorityQueue<T>; |
nothing calls this directly
no outgoing calls
no test coverage detected