mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
partition's thisArg should be optional (#8895)
This commit is contained in:
committed by
Masahiro Wakame
parent
bf263437d0
commit
abccfd4309
Vendored
+1
-1
@@ -29,6 +29,6 @@ declare namespace Rx {
|
||||
* An array of observables. The first triggers when the predicate returns true,
|
||||
* and the second triggers when the predicate returns false.
|
||||
*/
|
||||
partition(predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg: any): Observable<T>[];
|
||||
partition(predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg?: any): Observable<T>[];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user