Last active
May 21, 2018 23:13
-
-
Save cartant/f2f7dd10b4771aae19e483f40d0bf45d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| import { | |
| MonoTypeOperatorFunction, | |
| Observable, | |
| UnaryFunction | |
| } from "rxjs"; | |
| declare module 'rxjs/internal/util/pipe' { | |
| export function pipe<T>( | |
| ...operators: MonoTypeOperatorFunction<T>[] | |
| ): <R extends T>(source: Observable<R>) => Observable<R>; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment