Export to Excel
exportOptionsFromDataObject
Returns the options a data object was created with, and overwrites any options with the values in the second parameter.
export declare function exportOptionsFromDataObject(
dataObject: DataObject<any>,
specifiedOptions: Partial<DataObjectOptions<any>>
): DataObjectOptions<any>;getDataObjectReportRequest
Creates a Request object that can be used to export data in the data object to Excel.
export declare function getDataObjectReportRequest(params: DataObjectReportParams): {
controller: AbortController;
request: Request;
};openDataObjectReport
Last updated
Was this helpful?