import { BackgroundExecutionEvent } from './background-execution-event'; export interface BackgroundExecutionListener { label?: string; onEvent(event: BackgroundExecutionEvent): Promise; }