UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

4 lines (3 loc) 193 B
import { Provider } from "@smithy/types"; export type FromStaticConfig<T> = T | (() => T) | Provider<T>; export declare const fromStatic: <T>(defaultValue: FromStaticConfig<T>) => Provider<T>;