UNPKG

240 BTypeScriptView Raw
1export declare class HtmlHandler {
2 sourceFilePath: string;
3 targetFilePath: string;
4 checkIfExists(): Promise<boolean>;
5 copyHtml(targetPathArg?: string): Promise<void>;
6 minifyHtml(targetPathArg?: string): Promise<void>;
7}