UNPKG

serverless-aws-lambda

Version:

AWS Application Load Balancer and API Gateway - Lambda dev tool for Serverless. Allows Express synthax in handlers. Supports packaging, local invoking and offline ALB, APG, S3, SNS, SQS, DynamoDB Stream server mocking.

9 lines (8 loc) 395 B
import type { Plugin, BuildResult } from "esbuild"; export declare const buildOptimizer: ({ isLocal, nodeVersion, shimRequire, includeAwsSdk, buildCallback, }: { isLocal: boolean; nodeVersion: number; shimRequire: boolean; includeAwsSdk: boolean; buildCallback: (result: BuildResult, isRebuild: boolean, format: string, outdir: string) => void | Promise<void>; }) => Plugin;