UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

12 lines (11 loc) 587 B
import { IEnvironmentVariablesProvider } from '../environment-variables-interfaces/i-environment-variables-provider.interface'; /** * A basic implementation of the IEnvironmentVariablesProvider interface that fetches the values * from the process.env global variable available from within an AWS Lambda method. */ export declare class BaseEnvironmentVariablesProvider implements IEnvironmentVariablesProvider { readonly __i_environment_variables_provider__: true; private get process(); private getEnvironmentVariables; get(variableName: string): string; }