x4js - v2.2.49
    Preparing search index...

    Interface Route

    interface Route {
        handler: RouteHandler;
        keys: string[];
        pattern: RegExp;
    }
    Index
    handler: RouteHandler

    The function to call when this route matches the current URL.

    keys: string[]

    The names of the parameters extracted from the route string.

    pattern: RegExp

    The regular expression used to match the route against a URL path.