UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

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