Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit d1753a3

Browse files
author
Dan Lewi Harkestad
committed
Result after running grunt.
1 parent f7716d3 commit d1753a3

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

ts/rx.aggregates.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ declare module Rx {
88
* @param {Any} [seed] The initial accumulator value.
99
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
1010
*/
11-
reduce<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
11+
reduce<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1212
/**
1313
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
1414
* For aggregation behavior with incremental intermediate results, see Observable.scan.

ts/rx.aggregates.es6.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ declare module Rx {
88
* @param {Any} [seed] The initial accumulator value.
99
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
1010
*/
11-
reduce<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
11+
reduce<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1212
/**
1313
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
1414
* For aggregation behavior with incremental intermediate results, see Observable.scan.

ts/rx.all.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1863,7 +1863,7 @@ declare module Rx {
18631863
* @param {Mixed} [seed] The initial accumulator value.
18641864
* @returns {Observable} An observable sequence containing the accumulated values.
18651865
*/
1866-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1866+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
18671867
/**
18681868
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
18691869
* For aggregation behavior with no intermediate results, see Observable.aggregate.
@@ -2594,7 +2594,7 @@ declare module Rx {
25942594
* @param {Any} [seed] The initial accumulator value.
25952595
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
25962596
*/
2597-
reduce<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
2597+
reduce<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
25982598
/**
25992599
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
26002600
* For aggregation behavior with incremental intermediate results, see Observable.scan.

ts/rx.all.es6.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1860,7 +1860,7 @@ declare module Rx {
18601860
* @param {Mixed} [seed] The initial accumulator value.
18611861
* @returns {Observable} An observable sequence containing the accumulated values.
18621862
*/
1863-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1863+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
18641864
/**
18651865
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
18661866
* For aggregation behavior with no intermediate results, see Observable.aggregate.
@@ -2591,7 +2591,7 @@ declare module Rx {
25912591
* @param {Any} [seed] The initial accumulator value.
25922592
* @returns {Observable} An observable sequence containing a single element with the final accumulator value.
25932593
*/
2594-
reduce<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
2594+
reduce<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
25952595
/**
25962596
* Applies an accumulator function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified seed value is used as the initial accumulator value.
25972597
* For aggregation behavior with incremental intermediate results, see Observable.scan.

ts/rx.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,7 @@ declare module Rx {
18051805
* @param {Mixed} [seed] The initial accumulator value.
18061806
* @returns {Observable} An observable sequence containing the accumulated values.
18071807
*/
1808-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1808+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
18091809
/**
18101810
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
18111811
* For aggregation behavior with no intermediate results, see Observable.aggregate.

ts/rx.es6.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1802,7 +1802,7 @@ declare module Rx {
18021802
* @param {Mixed} [seed] The initial accumulator value.
18031803
* @returns {Observable} An observable sequence containing the accumulated values.
18041804
*/
1805-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1805+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
18061806
/**
18071807
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
18081808
* For aggregation behavior with no intermediate results, see Observable.aggregate.

ts/rx.lite.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1629,7 +1629,7 @@ declare module Rx {
16291629
* @param {Mixed} [seed] The initial accumulator value.
16301630
* @returns {Observable} An observable sequence containing the accumulated values.
16311631
*/
1632-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1632+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
16331633
/**
16341634
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
16351635
* For aggregation behavior with no intermediate results, see Observable.aggregate.

ts/rx.lite.es6.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1626,7 +1626,7 @@ declare module Rx {
16261626
* @param {Mixed} [seed] The initial accumulator value.
16271627
* @returns {Observable} An observable sequence containing the accumulated values.
16281628
*/
1629-
scan<TAcc>(accumulator: ((acc: T, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
1629+
scan<TAcc>(accumulator: ((acc: TAcc, value: T) => TAcc), seed?: TAcc): Observable<TAcc>;
16301630
/**
16311631
* Applies an accumulator function over an observable sequence and returns each intermediate result. The optional seed value is used as the initial accumulator value.
16321632
* For aggregation behavior with no intermediate results, see Observable.aggregate.

0 commit comments

Comments
 (0)