@@ -14,7 +14,7 @@ export function onErrorResumeNext<T, R>(v: ObservableInput<R>): OperatorFunction
14
14
export function onErrorResumeNext < T , T2 , T3 , R > ( v2 : ObservableInput < T2 > , v3 : ObservableInput < T3 > ) : OperatorFunction < T , R > ;
15
15
export function onErrorResumeNext < T , T2 , T3 , T4 , R > ( v2 : ObservableInput < T2 > , v3 : ObservableInput < T3 > , v4 : ObservableInput < T4 > ) : OperatorFunction < T , R > ;
16
16
export function onErrorResumeNext < T , T2 , T3 , T4 , T5 , R > ( v2 : ObservableInput < T2 > , v3 : ObservableInput < T3 > , v4 : ObservableInput < T4 > , v5 : ObservableInput < T5 > ) : OperatorFunction < T , R > ;
17
- export function onErrorResumeNext < T , T2 , T3 , T4 , T5 , T6 , R > ( v2 : ObservableInput < T2 > , v3 : ObservableInput < T3 > , v4 : ObservableInput < T4 > , v5 : ObservableInput < T5 > , v6 : ObservableInput < T6 > ) : OperatorFunction < T , R > ;
17
+ export function onErrorResumeNext < T , T2 , T3 , T4 , T5 , T6 , R > ( v2 : ObservableInput < T2 > , v3 : ObservableInput < T3 > , v4 : ObservableInput < T4 > , v5 : ObservableInput < T5 > , v6 : ObservableInput < T6 > ) : OperatorFunction < T , R > ;
18
18
export function onErrorResumeNext < T , R > ( ...observables : Array < ObservableInput < any > | ( ( ...values : Array < any > ) => R ) > ) : OperatorFunction < T , R > ;
19
19
export function onErrorResumeNext < T , R > ( array : ObservableInput < any > [ ] ) : OperatorFunction < T , R > ;
20
20
/* tslint:enable:max-line-length */
@@ -89,8 +89,7 @@ export function onErrorResumeNext<T, R>(array: ObservableInput<any>[]): Operator
89
89
*/
90
90
91
91
export function onErrorResumeNext < T , R > ( ...nextSources : Array < ObservableInput < any > |
92
- Array < ObservableInput < any > > |
93
- ( ( ...values : Array < any > ) => R ) > ) : OperatorFunction < T , R > {
92
+ Array < ObservableInput < any > > > ) : OperatorFunction < T , R > {
94
93
if ( nextSources . length === 1 && isArray ( nextSources [ 0 ] ) ) {
95
94
nextSources = < Array < Observable < any > > > nextSources [ 0 ] ;
96
95
}
@@ -110,8 +109,8 @@ export function onErrorResumeNextStatic<R>(array: ObservableInput<any>[]): Obser
110
109
/* tslint:enable:max-line-length */
111
110
112
111
export function onErrorResumeNextStatic < T , R > ( ...nextSources : Array < ObservableInput < any > |
113
- Array < ObservableInput < any > > |
114
- ( ( ...values : Array < any > ) => R ) > ) : Observable < R > {
112
+ Array < ObservableInput < any > > |
113
+ ( ( ...values : Array < any > ) => R ) > ) : Observable < R > {
115
114
let source : ObservableInput < any > = null ;
116
115
117
116
if ( nextSources . length === 1 && isArray ( nextSources [ 0 ] ) ) {
0 commit comments