rest-vir - v1.0.0
    Preparing search index...

    Type Alias MockEndpointResponseOptions<EndpointToMock>

    MockEndpointResponseOptions: Overwrite<
        MockResponseParams,
        IsNever<Extract<EndpointToMock["ResponseType"], undefined>> extends true
            ? { body: EndpointToMock["ResponseType"] }
            : { body?: EndpointToMock["ResponseType"] },
    >

    Type Parameters