UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

9 lines (8 loc) 252 B
import { BackgroundExecutionEventType } from './background-execution-event-type'; export interface BackgroundExecutionEvent<T> { type: BackgroundExecutionEventType; guid: string; processorType: string; data: T; errors?: string[]; }