/** * Function, which orders array of items by criteria in some direction. * @param arr - list of items to be ordered. * @param by - criteria of ordering. * @param order - direction of ordering. Default: 'asc'. * @returns - array of data, ordered by criteria. */ export declare function orderBy(arr: T[], by: (item: T) => string | number | null | undefined, order?: 'asc' | 'desc'): T[]; //# sourceMappingURL=orderBy.d.ts.map