fix(core): update

This commit is contained in:
2020-09-23 21:24:32 +00:00
parent ef568f2aa2
commit 6e761cb2b9
8 changed files with 7277 additions and 860 deletions

View File

@ -3,7 +3,6 @@ import * as sdk from '../ts/index';
import { ISimpleRequest } from '@tsclass/tsclass/dist_ts/network';
import { TypedRouter } from '@apiglobal/typedrequest';
tap.test('should create a valid Handler', async () => {
class MyHandler extends sdk.AAgHandler<any> {
public slug: 'testapi';
@ -23,8 +22,8 @@ tap.test('should create a valid Handler', async () => {
public async checkRequirements(): Promise<sdk.IRequirementResult> {
return {
allOk: true,
reason: ''
}
reason: '',
};
}
}