UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

18 lines (17 loc) 433 B
import type { IoTExtensionConfiguration } from "./extensionConfiguration"; /** * @public */ export interface RuntimeExtension { configure(extensionConfiguration: IoTExtensionConfiguration): void; } /** * @public */ export interface RuntimeExtensionsConfig { extensions: RuntimeExtension[]; } /** * @internal */ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;