How can I convert the below function into an arrow function.
How can I convert the above function into the arrow one
const handler: HttpHandler = {
handle: function (req: HttpRequest<any>): Observable<HttpEvent<any>> {
return of({} as any);
}
}