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

    Type Alias ExtractEndpointMethodDefinitionWithNoParam<Endpoint, Method>

    ExtractEndpointMethodDefinitionWithNoParam: Endpoint extends EndpointDefinition
        ? Method extends DefinableHttpMethod
            ? Extract<Endpoint["requests"][Method], EndpointMethodDefinition>
            : NoParam
        : NoParam

    Like ExtractEndpointMethodDefinition but instead of falling back to the generic EndpointMethodDefinition, it falls back to NoParam.

    Type Parameters