I hereby claim:
- I am hoisel on github.
- I am hoisel (https://keybase.io/hoisel) on keybase.
- I have a public key ASDGeBvmPwIoltvEySqikbo9mmByFXoGPNcI4PM3kf5ASgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/** | |
* @license Use of this source code is governed by an MIT-style license that | |
* can be found in the LICENSE file at https://github.com/cartant/rxjs-etc | |
*/ | |
import { Observable, pipe as _pipe, UnaryFunction } from "rxjs"; | |
export function genericPipe<T>(...operations: UnaryFunction<Observable<T>, Observable<T>>[]): <R extends T>(source: Observable<R>) => Observable<R>; | |
export function genericPipe<T>(...operations: UnaryFunction<T, T>[]): <R extends T>(source: R) => R; | |
export function genericPipe<T, A>(op1: UnaryFunction<T, A>): UnaryFunction<T, A>; |
import { Renderer2, RendererFactory2, RendererStyleFlags2, RendererType2, ViewEncapsulation } from '@angular/core'; | |
import { | |
EventManager, | |
ɵDomRendererFactory2, | |
ɵDomSharedStylesHost, | |
ɵflattenStyles, | |
ɵNAMESPACE_URIS | |
} from '@angular/platform-browser'; | |
//HACK: this uses the shadow DOM V1 spec until we fix it in core |