Files
Carl de Billy ddad6540d1 More RxJs definitions
Definitions for RxJs.html, RxJs.Time and RxJs.Aggregates
2013-04-16 15:35:49 -04:00

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;
}
}