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

    Type Alias BuildRoutePathOptions<Path>

    BuildRoutePathOptions: (
        undefined extends ExtractPathParams<NoInfer<Path>>
            ? Readonly<{ pathParams?: ExtractPathParams<NoInfer<Path>> }>
            : Readonly<{ pathParams: ExtractPathParams<NoInfer<Path>> }>
    ) extends infer Merged
        ? { readonly [Key in keyof Merged]: Merged[Key] }
        : never

    Type Parameters