Variable rootTreeConst

rootTree: Route<
    any,
    "/",
    "/",
    string,
    "__root__",
    undefined,
    {},
    {},
    AnyContext,
    AnyContext,
    {},
    undefined,
    readonly [
        Route<
            RootRoute<
                undefined,
                {},
                AnyContext,
                AnyContext,
                {},
                undefined,
                unknown,
                unknown,
            >,
            "/",
            "/",
            string,
            "/",
            undefined,
            ResolveParams<"/">,
            AnyContext,
            AnyContext,
            AnyContext,
            {},
            undefined,
            unknown,
            unknown,
        >,
        Route<
            RootRoute<
                undefined,
                {},
                AnyContext,
                AnyContext,
                {},
                undefined,
                unknown,
                unknown,
            >,
            "/import",
            "/import",
            string,
            "/import",
            undefined,
            ResolveParams<"/import">,
            AnyContext,
            AnyContext,
            AnyContext,
            {},
            undefined,
            unknown,
            unknown,
        >,
        Route<
            RootRoute<
                undefined,
                {},
                AnyContext,
                AnyContext,
                {},
                undefined,
                unknown,
                unknown,
            >,
            "/review",
            "/review",
            string,
            "/review",
            undefined,
            ResolveParams<"/review">,
            AnyContext,
            AnyContext,
            AnyContext,
            {},
            undefined,
            unknown,
            unknown,
        >,
        Route<
            RootRoute<
                undefined,
                {},
                AnyContext,
                AnyContext,
                {},
                undefined,
                unknown,
                unknown,
            >,
            "/sync",
            "/sync",
            string,
            "/sync",
            undefined,
            ResolveParams<"/sync">,
            AnyContext,
            AnyContext,
            AnyContext,
            {},
            undefined,
            unknown,
            unknown,
        >,
        Route<
            RootRoute<
                undefined,
                {},
                AnyContext,
                AnyContext,
                {},
                undefined,
                unknown,
                unknown,
            >,
            "/settings",
            "/settings",
            string,
            "/settings",
            undefined,
            ResolveParams<"/settings">,
            AnyContext,
            AnyContext,
            AnyContext,
            {},
            undefined,
            unknown,
            unknown,
        >,
    ],
    unknown,
> = ...

The root route tree containing all main application routes.

export const rootTree = RootRoute.addChildren([
HomeRoute,
ImportRoute,
ReviewRoute,
SyncRoute,
SettingsRoute,
]);