sdk/ts/sdk.classes.agenvironment.ts

8 lines
238 B
TypeScript
Raw Normal View History

2020-09-22 22:54:05 +00:00
import * as plugins from './sdk.plugins';
/**
* AgEnvironment handles the provision of environment variables to handlers
*/
2020-09-22 23:06:34 +00:00
export abstract class AgEnvironment {
public abstract async getEnvVar(envVarName: string): Promise<string>;
2020-09-22 22:54:05 +00:00
}