fix(core): update

This commit is contained in:
2023-07-12 19:40:41 +02:00
parent 61fcd5b992
commit a58c2881b9
21 changed files with 2181 additions and 28432 deletions

View File

@@ -1,10 +1,9 @@
import * as tools from './tools';
import * as tools from './tools/index.js';
/**
* a smartobject that simplifies accessing objects
*/
export class SmartObject {
// instance
public originalObject: object;
constructor(originalObjectArg: object) {
@@ -22,4 +21,4 @@ export class SmartObject {
public toFlatObject() {
return tools.toFlatObject(this.originalObject);
}
}
}