Libraries
    Preparing search index...

    Concise shorthand for defining a typed path template.

    const TodoById = route({ id: number().coerce() })`/${t => t.id}`;
    
    const Path = route`/some/path`;
    // or
    const Path = route()`/some/path`;

    Either a property map for typed path segments, or a TemplateStringsArray when used directly as a tagged template.

    A ParseStringSchemaBuilder, or a tagged-template function that produces one.