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) • 885 B
TypeScript
import { Deferred } from './deferred.class';
import { Document } from './document.class';
import { QPatches } from '../interface/q-patches.interface';
import { QGenericBookmarkProperties } from '../interface/q-generic-bookmark-properties.interface';
export declare class Bookmark {
globalService: any;
doc: Deferred<number>;
deferred: Deferred<number>;
outerDoc: Document;
bookmarkOuterId: string;
constructor(deferred: Deferred<number>, globalService: any, doc: Document, bookmarkOuterId: string);
setHandle(handle: number): void;
apply(): Promise<any>;
applyPatches(qPatches: QPatches): Promise<any>;
getInfo(): Promise<any>;
getLayout(): Promise<any>;
getProperties(): Promise<any>;
publish(): Promise<any>;
setProperties(qProp: QGenericBookmarkProperties): Promise<any>;
unPublish(): Promise<any>;
}