bubbleSort.d.ts 125 B

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