@api.global/typedserver
Version:
A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.
19 lines (18 loc) • 578 B
TypeScript
import * as plugins from './infohtml.plugins.js';
export interface IHtmlInfoOptions {
text: string;
heading?: string;
title?: string;
sentryMessage?: string;
sentryDsn?: string;
redirectTo?: string;
}
export declare class InfoHtml {
static fromSimpleText(textArg: string): Promise<InfoHtml>;
static fromOptions(optionsArg: IHtmlInfoOptions): Promise<InfoHtml>;
options: IHtmlInfoOptions;
smartntmlInstance: plugins.smartntml.Smartntml;
htmlString: string;
constructor(optionsArg: IHtmlInfoOptions);
init(): Promise<string>;
}