1 | # Installation
|
2 | > `npm install --save @types/gulp-template`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for gulp-template (https://github.com/sindresorhus/gulp-template#readme).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-template.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-template/index.d.ts)
|
10 | ````ts
|
11 | /// <reference types="node" />
|
12 |
|
13 | import * as _ from "lodash";
|
14 | import * as stream from "stream";
|
15 |
|
16 | declare function gulpTemplate(data: any, options: _.TemplateOptions): stream.Transform;
|
17 |
|
18 | declare namespace gulpTemplate {
|
19 | function precompile(options: _.TemplateOptions): stream.Transform;
|
20 | }
|
21 |
|
22 | export = gulpTemplate;
|
23 |
|
24 | ````
|
25 |
|
26 | ### Additional Details
|
27 | * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
|
28 | * Dependencies: [@types/lodash](https://npmjs.com/package/@types/lodash), [@types/node](https://npmjs.com/package/@types/node)
|
29 |
|
30 | # Credits
|
31 | These definitions were written by [Peter Safranek](https://github.com/pe8ter).
|
32 |
|
\ | No newline at end of file |