CancellingPipeOperator<I, R> 
Interface
PipeOperator that might cancel a synchronous calculation.
Source: rxjs-read/src/lib/util/pipe.operator.ts:22
Type parameters 
| Parameter | Description | 
|---|---|
| I | type of the input value passed to the operator | 
| R | type of the return value returned from the operator | 
Properties 
observableOperator 
observableOperator:
UnaryFn<Observable<I>,Observable<R>>
Source: rxjs-read/src/lib/util/pipe.operator.ts:23
valueOperator 
valueOperator:
UnaryFn<I,PipeFnResult<R>>