UNPKG

@bitblit/ratchet-epsilon-common

Version:

Tiny adapter to simplify building API gateway Lambda APIS

6 lines (5 loc) 212 B
import { BackgroundExecutionEvent } from './background-execution-event.js'; export interface BackgroundExecutionListener<T> { label?: string; onEvent(event: BackgroundExecutionEvent<T>): Promise<void>; }