File: rx.sorting.d.ts

package info (click to toggle)
node-rx 4.1.0%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,992 kB
  • sloc: javascript: 57,049; sh: 43; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 824 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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; }