UNPKG

serverless-offline-edge-lambda

Version:

A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.

4 lines (3 loc) 232 B
import { CloudFrontConfig, EventType, ServerlessInstance } from '../types'; export type ConfigBuilder = (eventType: EventType) => CloudFrontConfig; export declare function buildConfig(serverless: ServerlessInstance): ConfigBuilder;