fix(core): update
This commit is contained in:
@ -5,4 +5,4 @@ import * as plugins from './sdk.plugins';
|
||||
*/
|
||||
export abstract class AgEnvironment {
|
||||
public abstract async getEnvVar(envVarName: string): Promise<string>;
|
||||
}
|
||||
}
|
||||
|
@ -14,12 +14,12 @@ export abstract class AAgHandler<TClaim> {
|
||||
* a slug that separates the handler from other handlers
|
||||
*/
|
||||
public abstract slug: string;
|
||||
public abstract typedrouter: plugins.typedrequest.TypedRouter;
|
||||
public abstract typedrouter: plugins.typedrequest.TypedRouter;
|
||||
public abstract checkRequirements(): Promise<IRequirementResult>;
|
||||
|
||||
constructor(agEnvironmentArg: AgEnvironment) {
|
||||
this.agEnvironment = agEnvironmentArg;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* start the ag-handler
|
||||
|
@ -4,9 +4,7 @@ import * as path from 'path';
|
||||
// @apiglobal scope
|
||||
import * as typedrequest from '@apiglobal/typedrequest';
|
||||
|
||||
export {
|
||||
typedrequest
|
||||
};
|
||||
export { typedrequest };
|
||||
|
||||
// @tsclass scope
|
||||
import * as tsclass from '@tsclass/tsclass';
|
||||
|
Reference in New Issue
Block a user