fix(fix(AAgHandler): now has mandatory async start and async stop methods): update

This commit is contained in:
Philipp Kunz 2020-03-26 21:45:03 +00:00
parent 0b576c3170
commit bb7e9e75ba

View File

@ -8,4 +8,7 @@ export abstract class AAgHandler<TClaim> {
public abstract slug: string;
public abstract handleRequest (authInfoArg: AuthInfo<TClaim>, request: plugins.tsclass.network.ISimpleRequest): Promise<plugins.tsclass.network.ISimpleResponse>;
public abstract start(): Promise<any>;
public abstract stop(): Promise<any>;
}