sdk/ts/sdk.classes.agenvironment.ts

9 lines
236 B
TypeScript
Raw Permalink Normal View History

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