BREAKING CHANGE(switch to esm): update

This commit is contained in:
2023-03-20 12:26:43 +01:00
parent 411516befc
commit 5a3ccf6f4f
17 changed files with 4398 additions and 11253 deletions

View File

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