RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Type Alias RankedClientRequestMap

    RankedClientRequestMap: { [K in keyof BaseRequestMap]: BaseRequestMap[K] } & {
        [K in RankedRequest as `${K}`]: [
            payload: RankedRequestPayloads[K],
            response: RankedRequestResponses[K],
        ]
    }

    The complete request map for the RankedClient. This type is used to ensure type-safety and accurate autocomplete when sending/handling requests with client.sendRequest() and client.handleRequest().