fix(core): update

This commit is contained in:
2024-05-30 19:01:39 +02:00
parent 4449c82611
commit 489fa237b9
11 changed files with 31 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
import * as plugins from './plugins.js';
export class TypedResponseError {
public errorText: string;
public errorData: any;
constructor(errorTextArg: string, errorDataArg?: any) {
this.errorText = errorTextArg;
this.errorData = errorDataArg;
}
}