UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

7 lines (6 loc) 303 B
import { GenericAwsEventHandlerFunction } from './generic-aws-event-handler-function'; import { S3Event } from 'aws-lambda'; export interface S3Config { createHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>; removeHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>; }