angular-qlik-api
Version:
AngulerQlikApi is the angular wrapper for Qlik Engine API. It facilitates the usage and handles the synchronization.
14 lines (13 loc) • 359 B
TypeScript
import { QType } from '../enum/q-connection-type.enum';
import { QMeta } from './q-meta.interface';
import { QLogon } from '../';
export interface QConnection {
qId?: string;
qName: string;
qConnectionString: string;
qType: QType | string;
qUserName?: string;
qPassword?: string;
qMeta?: QMeta;
qLogOn?: QLogon;
}