Is there a way to pass pipes as parameters? For example:
var mypipes = [
pipeA(() => {
alert("a");
}),
pipeB(() => {
alert("b");
})
];
of(arg1, arg2, arg3).pipe(mypipes).subscribe();
Encountered an error message that says: provides no match for the signature '(source: Observable): Observable'