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

    Interface RequestInterceptorMiddleware

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

    RequestInterceptorMiddleware

    The request interceptor function to register. The function should accept a RequestInit object and return a modified or original RequestInit object.

    interface RequestInterceptorMiddleware {
        use: (fn: RequestInterceptor) => void;
    }
    Index

    Properties

    Properties

    use: (fn: RequestInterceptor) => void

    Method to register a request interceptor function.