Type Alias HostConfigCommon

type HostConfigCommon = {
    authRedirectUserConfirmation?: () => Promise<void>;
    autoRedirect?: boolean;
    embedRuntimeUrl?: string;
    host?: string;
    onAuthFailed?: (props: { message: string }) => unknown;
}
Index

Properties

authRedirectUserConfirmation?: () => Promise<void>
autoRedirect?: boolean
embedRuntimeUrl?: string

Optional parameter that can be used to point to a Qlik Cloud tenant domain from which the embed runtime should be loaded. If omitted the host parameter will be used.

host?: string

The URL to the cloud tenant or windows server. If scheme is excluded https is used. May include a virtual proxy prefix on windows. Any trailing slashes are stripped.

onAuthFailed?: (props: { message: string }) => unknown