@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
14 lines (13 loc) • 643 B
TypeScript
import { IEnvironmentVariablesProvider } from '../environment-variables-interfaces/i-environment-variables-provider.interface';
/**
* An implementation of the IEnvironmentVariablesProvider interface that can provide the value of
* previously configured variables.
*/
export declare class EnvironmentVariablesCatalog implements IEnvironmentVariablesProvider {
readonly __i_environment_variables_provider__: true;
private _variableNamesToValueMap;
protected get variableNamesToValueMap(): Map<string, string>;
constructor();
get(variableName: string): string;
set(variableName: string, variableValue: string): void;
}