UNPKG

@bitblit/ratchet-epsilon-common

Version:

Tiny adapter to simplify building API gateway Lambda APIS

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