ixfx
    Preparing search index...

    Type Alias RequestResponseMatchEvents<TRequest, TResp>

    type RequestResponseMatchEvents<TRequest, TResp> = {
        completed: {
            request: TRequest;
            response: TResp | string;
            success: boolean;
        };
        match: { request: TRequest; response: TResp };
    }

    Type Parameters

    • TRequest
    • TResp
    Index

    Properties

    Properties

    completed: { request: TRequest; response: TResp | string; success: boolean }
    match: { request: TRequest; response: TResp }