@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
16 lines (15 loc) • 811 B
TypeScript
import * as React from 'react';
import { ExportDestinationType } from '../../../AdaptableOptions/ExportOptions';
import { ReportFormatType, ReportNameType, ReportSchedule } from '../../../AdaptableState/ExportState';
interface ScheduledReportSettingsProps {
reportSchedule: ReportSchedule;
onChange: (reportSchedule: ReportSchedule) => void;
allFormats: ReportFormatType[];
allDestinations: ExportDestinationType[];
/** When set, the user picks which report this schedule exports (Export popup → New Schedule). */
allReportNames?: ReportNameType[];
/** When set, the report is fixed (schedule created from a specific report). */
fixedReportName?: ReportNameType;
}
export declare const ScheduledReportSettings: React.FunctionComponent<ScheduledReportSettingsProps>;
export {};