@tripathirajan/fetcher - v1.0.2
    Preparing search index...

    Interface ResponseInterceptorMiddleware

    Middleware interface for response interceptors. This interface defines a method to register response interceptors.

    ResponseInterceptorMiddleware

    The response interceptor function to register. The function should accept a Response object and return a modified or original Response object.

    interface ResponseInterceptorMiddleware {
        use: (fn: ResponseInterceptor) => void;
    }
    Index

    Properties

    Properties

    use: (fn: ResponseInterceptor) => void

    Method to register a response interceptor function.