UNPKG

@enter-at/lambda-handlers

Version:

An opinionated Typescript package that facilitates specifying AWS Lambda handlers including input validation, error handling and response formatting.

13 lines (12 loc) 370 B
export * from "./decorator/format"; export * from "./decorator/handler"; export * from "./decorator/header"; export * from "./error"; import * as input from "./format/InputFormat"; import * as output from "./format/OutputFormat"; export declare const format: { input: typeof input; output: typeof output; }; export * from "./header"; export * from "./response";