mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 13:41:40 +00:00
update
This commit is contained in:
22
node_modules/rx/ts/rx.sorting.es6.d.ts
generated
vendored
Normal file
22
node_modules/rx/ts/rx.sorting.es6.d.ts
generated
vendored
Normal file
@ -0,0 +1,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; }
|
Reference in New Issue
Block a user