-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(typings): Enabled noImplictAny and updated typings
With this change compliation time and performance is improved
- Loading branch information
1 parent
7f67b09
commit 4d9d33d
Showing
154 changed files
with
719 additions
and
669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import {Observable} from '../../Observable'; | ||
import {exhaust} from '../../operator/exhaust'; | ||
Observable.prototype.exhaust = exhaust; | ||
(Observable.prototype as any).exhaust = exhaust; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import {Observable} from '../../Observable'; | ||
import {exhaustMap} from '../../operator/exhaustMap'; | ||
Observable.prototype.exhaustMap = exhaustMap; | ||
(Observable.prototype as any).exhaustMap = exhaustMap; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {distinctUntilKeyChanged} from '../../../operator/extended/distinctUntilKeyChanged'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.distinctUntilKeyChanged = distinctUntilKeyChanged; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {elementAt} from '../../../operator/extended/elementAt'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.elementAt = elementAt; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {find} from '../../../operator/extended/find'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.find = find; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {findIndex} from '../../../operator/extended/findIndex'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.findIndex = findIndex; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {isEmpty} from '../../../operator/extended/isEmpty'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.isEmpty = isEmpty; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {max} from '../../../operator/extended/max'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.max = max; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {mergeScan} from '../../../operator/extended/mergeScan'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.mergeScan = mergeScan; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {min} from '../../../operator/extended/min'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.min = min; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {Observable} from '../../../Observable'; | ||
import {timeInterval} from '../../../operator/extended/timeInterval'; | ||
import {KitchenSinkOperators} from '../../../Rx.KitchenSink'; | ||
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype); | ||
const observableProto = (<KitchenSinkOperators<any>><any>Observable.prototype); | ||
observableProto.timeInterval = timeInterval; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import {Observable} from '../../Observable'; | ||
import {zip} from '../../operator/zip-static'; | ||
Observable.zip = zip; | ||
Observable.zip = <any>zip; | ||
|
||
export var _void: void; | ||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import {Observable} from '../../Observable'; | ||
import {zipProto} from '../../operator/zip'; | ||
Observable.prototype.zip = zipProto; | ||
import {zip} from '../../operator/zip'; | ||
Observable.prototype.zip = zip; | ||
|
||
export var _void: void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.