You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
824 B
22 lines
824 B
declare module Rx { |
|
|
|
export interface Observable<T> { |
|
/** |
|
* jortSort checks if your inputs are sorted. Note that this is only for a sequence with an end. |
|
* See http://jort.technology/ for full details. |
|
* @returns {Observable} An observable which has a single value of true if sorted, else false. |
|
*/ |
|
jortSort(): Observable<boolean>; |
|
} |
|
|
|
export interface Observable<T> { |
|
/** |
|
* jortSort checks if your inputs are sorted until another Observable sequence fires. |
|
* See http://jort.technology/ for full details. |
|
* @returns {Observable} An observable which has a single value of true if sorted, else false. |
|
*/ |
|
jortSortUntil<TOther>(other: TOther): Observable<boolean>; |
|
} |
|
|
|
} |
|
declare module "rx.sorting" { export = Rx; }
|
|
|