UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

10 lines (9 loc) 240 B
import type { Provider } from "@smithy/types"; /** * @internal */ export type FromStaticConfig<T> = T | (() => T) | Provider<T>; /** * @internal */ export declare const fromStatic: <T>(defaultValue: FromStaticConfig<T>) => Provider<T>;