powerapps-common
Version:
Common Dataverse JavaScript Functions
19 lines (18 loc) • 441 B
TypeScript
export declare const enum ReportFormat {
PDF = "PDF",
CSV = "CSV",
XML = "XML",
Word = "WORDOPENXML",
Excel = "EXCELOPENXML",
HTML5 = "HTML 5"
}
export interface ReportConfig {
id: string;
sessionId?: string;
controlId?: string;
reportId: string;
format: ReportFormat;
parameterName: string;
table: string;
}
export declare const generateReport: (config: ReportConfig) => Promise<string>;