rest-vir - v2.2.0
    Preparing search index...

    Type Alias MockHostEndpointMap<Api, Context>

    MockHostEndpointMap: {
        [Path in keyof Api["endpoints"]]?: MockEndpointMethodImplementations<
            Extract<Api["endpoints"][Path], EndpointDefinition>,
            Context,
        >
    }

    Map of endpoint path → mock implementations. Each key must exist in the api's endpoints record.

    Type Parameters