@types/gulp-mustache
TypeScript icon, indicating that this package has built-in type declarations

3.0.7 • Public • Published

Installation

npm install --save @types/gulp-mustache

Summary

This package contains type definitions for gulp-mustache (https://github.com/rogeriopvl/gulp-mustache).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-mustache.

index.d.ts

/// <reference types="node" />

import { Transform } from "stream";

declare namespace GulpMustache {
    type View = Hash | string | undefined;

    interface Hash {
        [key: string]: any;
    }

    interface Options {
        extension?: string | undefined;
        tags?: readonly string[] | undefined;
    }
}

declare function GulpMustache(
    view: GulpMustache.View,
    options?: GulpMustache.Options,
    partials?: GulpMustache.Hash,
): Transform;

export = GulpMustache;

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:24 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Christopher Durham.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @types/gulp-mustache

    Weekly Downloads

    93

    Version

    3.0.7

    License

    MIT

    Unpacked Size

    3.58 kB

    Total Files

    5

    Last publish

    Collaborators

    • types