UNPKG

@launchmenu/core

Version:

An environment for visual keyboard controlled applets

10 lines 417 B
/** * Sorts the passed array in place * @param arr The array to sort * @param condition The sorting condition * @param start The index to start sorting at * @param end The index to end sorting at * @returns A reference to the passed array */ export declare function quickSort<T>(arr: T[], condition?: (a: T, b: T) => boolean, start?: number, end?: number): T[]; //# sourceMappingURL=quickSort.d.ts.map