Options for launching an app.

interface LauncherOptions {
    defaultApp?: string | AppConfigJsonProvider | AppConfigJson;
    domId?: string;
    param?: string;
}

Properties

defaultApp?: string | AppConfigJsonProvider | AppConfigJson

Provides a way to launch an default app by providing its name or its configuration.

domId?: string

The id of the dom node used as the application root node.

param?: string

Optional: Name of the query parameter containing the app name, default is 'app'.