UNPKG

205 BTypeScriptView Raw
1import { Provider } from "@aws-sdk/types";
2export declare type FromStaticConfig<T> = T | (() => T) | Provider<T>;
3export declare const fromStatic: <T>(defaultValue: FromStaticConfig<T>) => Provider<T>;