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

    Type Alias EndpointImplementationMethods<Endpoint>

    EndpointImplementationMethods: Endpoint extends EndpointImplementation
        ? Extract<
            keyof NoInfer<Endpoint>["definition"]["requests"],
            DefinableHttpMethod,
        >
        : DefinableHttpMethod

    Extracts the allowed methods for the given endpoint implementation.

    Type Parameters