declare module Rx { export interface Observable { /** * 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; } export interface Observable { /** * 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(other: TOther): Observable; } } declare module "rx.sorting" { export = Rx; }