import { BackgroundExecutionEventType } from './background-execution-event-type'; export interface BackgroundExecutionEvent { type: BackgroundExecutionEventType; guid: string; processorType: string; data: T; errors?: string[]; }