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

    Type Alias DefinedEndpointFetchOutputResponseData<Endpoint, Method, Status>

    DefinedEndpointFetchOutputResponseData: ExtractEndpointMethodDefinition<
        Endpoint,
        Method,
    > extends infer EndpointMethod extends EndpointMethodDefinition
        ? EndpointMethod["responses"] extends AnyObject
            ? ResolveShapeType<
                NonNullable<EndpointMethod["responses"][Status]>["responseData"],
            >
            : any
        : any

    Type Parameters