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

    Type Alias PathParams<EndpointPath>

    Extracts named and wildcard path params.

    type PathParams<EndpointPath extends string> = {
        hasWildcard: HasWildcardParam<EndpointPath>;
        namedParams: NamedPathParams<EndpointPath>;
    }

    Type Parameters

    • EndpointPath extends string
    Index

    Properties