UNPKG

@smithy/node-config-provider

Version:

Load config default values from ini config files and environmental variable

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