fix(core): update

This commit is contained in:
2020-11-04 18:01:04 +00:00
parent 49ca240237
commit 7a0d767e9d
14 changed files with 2112 additions and 1665 deletions

View File

@@ -1,20 +1,4 @@
import * as plugins from './websetup.plugins';
import { IMetaObject, setupMetaInformation } from './meta';
export interface IWebSetupConstructorOptions {
metaObject: IMetaObject;
}
/**
* the main WebSetup class
*/
export class WebSetup {
public options: IWebSetupConstructorOptions;
constructor(optionsArg: IWebSetupConstructorOptions) {
this.options = optionsArg;
}
public async setup() {
await setupMetaInformation(this.options.metaObject);
}
}
export * from './websetup.classes.websetup';
export * from './websetup.classes.tag.metatag';
export * from './websetup.classes.tag.opengraphtag';
export * from './websetup.classes.tag.jsonldtag';