System report names provided by AdapTable

TypeScript
export type SystemReportName = 
/**
 * Report includes all data, exporting all rows and columns, regardless of filtering/sorting etc.
 */
'All Data'
/**
 * Report includes current Layout, exporting only currently visible columns and rows with the current sorting/filtering applied.
 */
 | 'Current Layout'
/**
 * Report includes only selected data
 */
 | 'Selected Data';