/** * data-structure-typed * * @author Kirk Qi * @copyright Copyright (c) 2022 Kirk Qi * @license MIT License */ import type { PriorityQueueOptions } from '../../types'; import { Heap } from '../heap'; /** * @example */ export class PriorityQueue extends Heap { constructor(elements: Iterable | Iterable = [], options?: PriorityQueueOptions) { super(elements, options); } }