shellSort.d.ts 123 B

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