Launcher for apps.

interface Launcher {
    launch(app: string, domId: string): Promise<Framework>;
    launchApp(app: string, domId: string): Promise<Framework>;
    launchAppFromParam(opts: LauncherOptions): Promise<Framework>;
}

Methods

  • Launches an app with the given name using the given domId as its root node.

    Parameters

    • app: string
    • domId: string

    Returns Promise<Framework>

  • Launches an app with the given name using the given domId as its root node.

    Parameters

    • app: string
    • domId: string

    Returns Promise<Framework>