fix(core): update

This commit is contained in:
Philipp Kunz 2020-12-08 22:31:35 +00:00
parent 8fb071f57b
commit 5ce55190fe
3 changed files with 14 additions and 0 deletions

View File

@ -2,3 +2,4 @@ export * from './websetup.classes.websetup';
export * from './websetup.classes.tag.metatag';
export * from './websetup.classes.tag.opengraphtag';
export * from './websetup.classes.tag.jsonldtag';
export * from './websetup.classes.title';

View File

@ -0,0 +1,9 @@
import * as plugins from './websetup.plugins';
/**
* a title proxy class
* --> to be used in the future when flashing titles is supported
*/
export class Title {
}

View File

@ -58,6 +58,10 @@ export class WebSetup {
return subLevel;
}
/**
* flashes the title with the given text
* @param flashTextArg
*/
public flashTitle(flashTextArg: string) {}
/**