UNPKG

powerapps-common

Version:
19 lines (18 loc) 441 B
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>;