I've been going through the Angular tutorial, but I'm having trouble grasping the significance of this particular code snippet:
return (error: any): Observable<T> => {...};
It seems like the function is returning another function, but I'm a bit confused about the parameters it takes. Is "error" supposed to be a variable with type "any", and does it return an object of type Observable?