mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
473 B
TypeScript
17 lines
473 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
|
|
// TypeScript Version: 2.2
|
|
|
|
/// <reference types="node" />
|
|
|
|
import * as HTMLMinifier from 'html-minifier';
|
|
|
|
declare namespace htmlmin {
|
|
}
|
|
|
|
declare function htmlmin(options?: HTMLMinifier.Options): NodeJS.ReadWriteStream;
|
|
|
|
export = htmlmin;
|