Type Alias RequestResponseMatchEvents<TRequest, TResp>

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

Type Parameters

  • TRequest
  • TResp