added/fixed headers o-s

https://github.com/borisyankov/DefinitelyTyped/issues/1570
This commit is contained in:
Bartvds
2014-01-24 01:56:27 +01:00
parent 8c07adefeb
commit 709a0363a0
21 changed files with 72 additions and 39 deletions
+4 -4
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-Aggregates package
// Type definitions for RxJS-Aggregates package
// Project: http://rx.codeplex.com/
// Definitions by: Carl de Billy <http://carl.debilly.net/>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
export interface Observable<T> {
aggregate(accumulator: (acc: T, value: T) => T): Observable<T>;
+3 -3
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-Async package 2.2.11
// Project: http://rx.codeplex.com/
// Definitions by: zoetrope <https://github.com/zoetrope>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
interface ObservableStatic {
start<T>(func: () => T, scheduler?: IScheduler, context?: any): Observable<T>;
+4 -4
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-Binding package
// Type definitions for RxJS-Binding package
// Project: http://rx.codeplex.com/
// Definitions by: Carl de Billy <http://carl.debilly.net/>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
export interface BehaviorSubject<T> extends Subject<T> {
}
+4 -4
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-Coincidence package
// Type definitions for RxJS-Coincidence package
// Project: http://rx.codeplex.com/
// Definitions by: Carl de Billy <http://carl.debilly.net/>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
interface Observable<T> {
+1 -1
View File
@@ -1,7 +1,7 @@
// Type definitions for RxJS
// Project: http://rx.codeplex.com/
// Definitions by: gsino <http://www.codeplex.com/site/users/view/gsino>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module Rx {
+3 -3
View File
@@ -1,10 +1,10 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-Join package
// Type definitions for RxJS-Join package
// Project: http://rx.codeplex.com/
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
interface Pattern1<T1> {
+1 -1
View File
@@ -1,6 +1,6 @@
// Type definitions for bridging RxJS with jQuery.
// Project: https://github.com/Reactive-Extensions/RxJS-jQuery/
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="../jquery/jquery.d.ts"/>
+3 -3
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
///<reference path="rx.virtualtime.d.ts" />
// Type definitions for RxJS-Testing
// Project: https://github.com/Reactive-Extensions/RxJS/
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
///<reference path="rx.virtualtime.d.ts" />
declare module Rx {
export class TestScheduler extends VirtualTimeScheduler<number, number> {
constructor();
+4 -4
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS "Aggregates"
// Project: http://rx.codeplex.com/
// Definitions by: Carl de Billy <http://carl.debilly.net/>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
export interface TimeInterval<T> {
@@ -80,4 +80,4 @@ declare module Rx {
timeSelector: (state: TState) => number,
scheduler?: IScheduler): Observable<TResult>;
}
}
}
+3 -3
View File
@@ -1,11 +1,11 @@
///<reference path="rx.d.ts" />
// Type definitions for RxJS-VirtualTime package 2.2
// Project: http://rx.codeplex.com/
// Definitions by: gsino <http://www.codeplex.com/site/users/view/gsino>
// Revision by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions by: Igor Oleinikov <https://github.com/Igorbek>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="rx.d.ts" />
declare module Rx {
// Virtual IScheduler
export /*abstract*/ class VirtualTimeScheduler<TAbsolute, TRelative> extends Scheduler {