@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 537 B
TypeScript
import * as React from 'react';
import { ExportDestinationType } from '../../../../AdaptableOptions/ExportOptions';
import { Report, ReportFormatType, ReportSchedule } from '../../../../AdaptableState/ExportState';
interface ReportScheduleProps {
report: ReportSchedule;
onChange: (reminder: ReportSchedule) => void;
allReports: Report[];
allFormats: ReportFormatType[];
allDestinations: ExportDestinationType[];
}
export declare const ScheduleSettingsReport: React.FunctionComponent<ReportScheduleProps>;
export {};