Type of Export result data: string (CSV), ReportData (JSON), or Blob (Excel)

TypeScript
export type ExportResultData = {
    type: 'csv';
    data: string;
} | {
    type: 'json';
    data: ReportData;
} | {
    type: 'excel';
    data: Blob | string;
};
References

ReportData