@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
14 lines (13 loc) • 323 B
TypeScript
/**
* Provides the value of the known environment variables.
*/
export interface IEnvironmentVariablesProvider {
/**
* 屪
*/
readonly __i_environment_variables_provider__: true;
/**
* Gets the value of the variable that has the specified name.
*/
get(variableName: string): string;
}