UNPKG
@lifaon/rx-js-light
Version:
beta (1.0.0-beta.2)
latest (2.2.0)
2.2.0
2.1.0
2.0.0
1.2.1
1.2.0
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-beta.2
1.0.0-beta.1
Blazing fast Observables
lifaon74/rx-js-light
@lifaon/rx-js-light
/
src
/
observer
/
pipes
/
built-in
/
map
/
map-observer-pipe.d.ts
4 lines
(3 loc)
•
231 B
TypeScript
View Raw
1
2
3
4
import
{
IObserverPipe
}
from
'../../type/observer-pipe.type'
;
import
{
IMapFunction
}
from
'./map-function.type'
;
export
declare
function
mapObserverPipe<
GIn
,
GOut
>(
mapFunction
:
IMapFunction
<
GIn
,
GOut
>):
IObserverPipe
<
GIn
,
GOut
>;