UNPKG

@aws-sdk/node-config-provider

Version:

Load config default values from ini config files and environmental variable

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