mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
16 lines
573 B
TypeScript
16 lines
573 B
TypeScript
// Type definitions for RxJS "Aggregates"
|
|
// Project: http://rx.codeplex.com/
|
|
// Definitions by: Carl de Billy <http://carl.debilly.net/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
///<reference path="rx.js.d.ts" />
|
|
|
|
declare module Rx {
|
|
export module Observable {
|
|
function all(predicate?: (any) => bool): IObservable;
|
|
function min(predicate?: (any) => bool): IObservable;
|
|
function max(predicate?: (any) => bool): IObservable;
|
|
function count(predicate?: (any) => bool): IObservable;
|
|
function sum(keySelector?: (any) => any): IObservable;
|
|
}
|
|
} |