chore(deps): modernize platformclient tooling

This commit is contained in:
2026-04-28 12:02:50 +00:00
parent 4b3a2b2e75
commit b4b2ed9571
10 changed files with 6284 additions and 3530 deletions
+2 -3
View File
@@ -16,7 +16,6 @@ export class InfoHtml {
public static async fromSimpleText(textArg: string) {
const infohtmlInstance = new InfoHtml({
text: textArg,
heading: null,
});
await infohtmlInstance.init();
return infohtmlInstance;
@@ -30,8 +29,8 @@ export class InfoHtml {
// INSTANCE
public options: IHtmlInfoOptions;
public smartntmlInstance: plugins.smartntml.Smartntml;
public htmlString: string;
public smartntmlInstance?: plugins.smartntml.Smartntml;
public htmlString = '';
constructor(optionsArg: IHtmlInfoOptions) {
this.options = optionsArg;
}