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;
}
