// Type definitions for gulp-htmlmin v1.3.0 // Project: https://github.com/jonschlinkert/gulp-htmlmin // Definitions by: Tanguy Krotoff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// /// declare module 'gulp-htmlmin' { import * as HTMLMinifier from 'html-minifier'; namespace htmlmin { } function htmlmin(options?: HTMLMinifier.Options): NodeJS.ReadWriteStream; export = htmlmin; }