qlik-saas-api
Version:
Interact with Qlik Sense SaaS REST API
17 lines (16 loc) • 441 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import { QlikSaaSClient } from "qlik-rest-api";
export declare class DiProjectActions {
#private;
constructor(saasClient: QlikSaaSClient, id: string);
export(arg?: {
includeBindings: boolean;
}): Promise<Buffer>;
import(arg: {
/**
* The binary content of the file
*/
file: Buffer | string;
}): Promise<number>;
}