this.gui
    Preparing search index...

    Type Alias StartAppOptions

    type StartAppOptions = {
        basePath?: string;
        createMe?: () => any | Promise<any>;
        ctx?: Record<string, any>;
        gui?: any;
        inputUrl?: string | URL;
        install?: InstallHook | InstallHook[];
        legacyRouteQueryKey?: string | false;
        me?: any;
        registerRoutes?: (router: Router) => void | Promise<void>;
        root?: Element | string | null;
        rootId?: string;
        runtime?: RouterRuntime | null;
        target?: Element | string | null;
        useHistory?: boolean;
    }
    Index

    Properties

    basePath?: string
    createMe?: () => any | Promise<any>
    ctx?: Record<string, any>
    gui?: any
    inputUrl?: string | URL
    install?: InstallHook | InstallHook[]
    legacyRouteQueryKey?: string | false
    me?: any
    registerRoutes?: (router: Router) => void | Promise<void>
    root?: Element | string | null
    rootId?: string
    runtime?: RouterRuntime | null
    target?: Element | string | null
    useHistory?: boolean