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