UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

16 lines (15 loc) 439 B
import { ReportSchedule } from '../../AdaptableState/ExportState'; import { BaseContext } from '../../types'; /** * EventInfo returned by the ReportScheduleRan event */ export interface ReportScheduleRanInfo extends BaseContext { /** * Report schedule that was triggered (if applicable) */ reportSchedule?: ReportSchedule; /** * ISO datetime when Schedule ran (useful for logging) */ RanAt: string; }