UNPKG

@enter-at/lambda-handlers

Version:

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

5 lines (4 loc) 280 B
import * as handlers from "../../handler"; type Handler = (_target: unknown, _propertyName: string, propertyDescriptor: PropertyDescriptor) => PropertyDescriptor; export declare function APIGatewayProxyHandler(args?: handlers.APIGatewayProxyHandlerArguments): Handler; export {};