DefinitelyTyped/gulp-htmlmin/gulp-htmlmin.d.ts

19 lines
557 B
TypeScript

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