@mikeycoxon/aws-lambda-event-http-router
Version:
AWS Lambda handler utility for HTTP REST request routing based on details in the APIGatewayProxyEvent
7 lines (6 loc) • 381 B
TypeScript
import type { APIGatewayProxyEvent } from 'aws-lambda';
export declare const TEST_GET_EVENT: APIGatewayProxyEvent;
export declare const TEST_POST_EVENT_WITH_ID: APIGatewayProxyEvent;
export declare const TEST_PUT_EVENT_WITH_ID: APIGatewayProxyEvent;
export declare const TEST_DELETE_EVENT_WITH_ID: APIGatewayProxyEvent;
export declare const TEST_PATCH_EVENT: APIGatewayProxyEvent;