DefinitelyTyped/types/gulp-html-prettify/index.d.ts
TokugawaT_YD c9e7cb88b0 New types for Gulp-html-prettify (#35005)
* clear to tests

* clear to tests
2019-04-26 14:19:33 -07:00

19 lines
547 B
TypeScript

// Type definitions for npm i gulp-html-prettify 0.0
// Project: https://www.npmjs.com/package/gulp-html-prettify
// Definitions by: Takesi Tokugawa <https://github.com/TokugawaTakesi>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
interface GulpHtmlPrettifyOptions {
indent_char?: string;
indent_size?: number;
}
interface GulpHtmlPrettify {
(options?: GulpHtmlPrettifyOptions): NodeJS.ReadWriteStream;
}
declare var gulpHtmlPrettify: GulpHtmlPrettify;
export = gulpHtmlPrettify;