UNPKG

qlik

Version:

A collection of helpful utilities for using the Qlik Capability APIs

34 lines (33 loc) 749 B
export interface GetAppConfig { host?: string; port: string | number; prefix?: string; isSecure?: boolean; openWithoutData?: boolean; identity?: string; ticket?: string; isSaaS?: boolean; webIntegrationId?: string; isCssRequired?: boolean; loginUri?: string; auth?: { method: 'redirect' | 'popup'; popupWidth?: number; popupHeight?: number; loginCallback?: (user: any) => void; logoutCallback?: () => void; }; } export interface GetGlobalConfig { host: string; port: string; prefix: string; isSecure: boolean; identity: string; } export interface IUser { directory: string; userId: string; authUser: any; tenant?: any; }