Interface Handler

The Handler interface enforces the handle method with ajax compliant typing on the implementing class or object. This contract is used by the Proxy to type-guard the next hops.

interface Handler {
    handle(request): Observable<Response<any>>;
}

Implemented by

Methods

Methods

Generated using TypeDoc