heapSort.d.ts 121 B

12345
  1. import types = require('./types');
  2. declare function heapSort(arr: any[], cmp?: types.AnyFn): any[];
  3. export = heapSort;