LookAtMySuitBot/js/node_modules/@datastructures-js/heap/index.d.ts

10 lines
248 B
TypeScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
import { Heap, ICompare } from './src/heap';
import { MinHeap } from './src/minHeap';
import { MaxHeap, IGetCompareValue } from './src/maxHeap';
export { Heap }
export { ICompare }
export { IGetCompareValue }
export { MinHeap }
export { MaxHeap }