Type alias ConvertEndpoints<Root>

ConvertEndpoints<Root>: {
    [Key in keyof Root as ConvertEndpointKey<Key>]: Key extends HTTPMethods
        ? ConvertEndpoint<Root, Key>
        : never
}

Utility type that converts endpoint definitions from an PAPIBuilder into API callers

Type Parameters