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.

14 lines (13 loc) 327 B
import type { ServerConfig } from "./config"; declare const exitEvents: string[]; export declare class Server { #private; constructor(config?: ServerConfig); start(): Promise<{ port: string; ip: string; }>; stop(): boolean | undefined; } export type { ServerConfig }; export { exitEvents };