| 17 | ): ParamType<T>; |
| 18 | |
| 19 | export interface AppConfigOptions<AwsAppConfigClient = AppConfigDataClient> |
| 20 | extends Omit< |
| 21 | MiddyOptions<AwsAppConfigClient, AppConfigDataClientConfig>, |
| 22 | "fetchData" |
| 23 | > { |
| 24 | fetchData?: { |
| 25 | [key: string]: StartConfigurationSessionRequest | ParamType<unknown>; |
| 26 | }; |
| 27 | } |
| 28 | |
| 29 | export type Context<TOptions extends AppConfigOptions | undefined> = |
| 30 | TOptions extends { setToContext: true } |
nothing calls this directly
no outgoing calls
no test coverage detected