fix(core): update

This commit is contained in:
2020-11-05 17:56:35 +00:00
parent 782c9cd740
commit a7fca4e0c1
4 changed files with 24 additions and 9 deletions

View File

@@ -25,7 +25,10 @@ export class WebSetup {
/**
* an async setup called by the constructor
*/
private async setup() {
public async setup(optionsArg?: IWebSetupConstructorOptions) {
if (optionsArg) {
this.options = optionsArg;
}
await this.tagManager.setup(this.options.metaObject);
}