fix(core): update

This commit is contained in:
2020-09-22 23:06:34 +00:00
parent f73334d8fc
commit fced92e1cc
3 changed files with 18 additions and 3 deletions

View File

@@ -3,6 +3,6 @@ import * as plugins from './sdk.plugins';
/**
* AgEnvironment handles the provision of environment variables to handlers
*/
export class AgEnvironment {
export abstract class AgEnvironment {
public abstract async getEnvVar(envVarName: string): Promise<string>;
}