UNPKG

angular-qlik-api

Version:

AngulerQlikApi is the angular wrapper for Qlik Engine API. It facilitates the usage and handles the synchronization.

22 lines (21 loc) 720 B
import { Deferred } from './deferred.class'; import { Document } from './document.class'; export declare class List { definition: any; globalService: any; doc: Deferred<number>; deferred: Deferred<number>; callback: any; outerDoc: any; cubeOuterId: string; constructor(deferred: Deferred<number>, globalService: any, doc: Document, cubeOuterId: string); subscribe(cb: any): List; unsubscribe(): void; onMessageListCreated(m: any): void; getLayout(): void; onMessageLayout(m: any): void; addQFieldDef(qFieldDefs: string, qFieldLabels?: string): List; select(index: number): List; private setHandle(h); private setDefinitionId(n); }