UNPKG

768 BTypeScriptView Raw
1import { MonoTypeOperatorAsyncFunction } from '../../interfaces';
2export declare function orderBy<TKey, TSource>(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction<TSource>;
3export declare function orderByDescending<TKey, TSource>(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction<TSource>;
4export declare function thenBy<TKey, TSource>(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction<TSource>;
5export declare function thenByDescending<TKey, TSource>(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction<TSource>;