Metzploreur/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts
clement callaert 244d45ceb8 Version 2
2023-11-01 17:33:25 +01:00

3 lines
193 B
TypeScript

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