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

    Type Alias HasWildcardParam<EndpointPath>

    HasWildcardParam: string extends EndpointPath
        ? boolean
        : EndpointPath extends `${string}/*`
            ? true
            : IsEqual<`/${string}`, EndpointPath> extends true ? boolean : false

    Determines if the given endpoint path has a trailing wildcard.

    Type Parameters

    • EndpointPath extends string