// Type definitions for gulp-mustache v 3.0 // Project: https://github.com/rogeriopvl/gulp-mustache // Definitions by: Christopher Durham // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import { Transform } from "stream"; declare namespace GulpMustache { type View = Hash | string | undefined; interface Hash { [key: string]: any; } interface Options { extension?: string; tags?: ReadonlyArray; } } declare function GulpMustache(view: GulpMustache.View, options?: GulpMustache.Options, partials?: GulpMustache.Hash): Transform; export = GulpMustache;