UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

7 lines (6 loc) 290 B
import { S3CreateHandlerFunction } from './s3-create-handler-function'; import { S3RemoveHandlerFunction } from './s3-remove-handler-function'; export interface S3Config { createHandlers: Map<string, S3CreateHandlerFunction>; removeHandlers: Map<string, S3RemoveHandlerFunction>; }