UNPKG

212 BTypeScriptView Raw
1/// <reference types="node" />
2
3import * as HTMLMinifier from "html-minifier";
4
5declare namespace htmlmin {
6}
7
8declare function htmlmin(options?: HTMLMinifier.Options): NodeJS.ReadWriteStream;
9
10export = htmlmin;