1 | # Installation
|
2 | > `npm install --save @types/envify`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for envify (https://github.com/hughsk/envify).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/envify.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/envify/index.d.ts)
|
10 | ````ts
|
11 | /// <reference types="node" />
|
12 |
|
13 | declare module "envify" {
|
14 | var envify: (file: string, environment: { [name: string]: any }) => NodeJS.ReadWriteStream;
|
15 | export = envify;
|
16 | }
|
17 |
|
18 | declare module "envify/custom" {
|
19 | function envify(
|
20 | environment: { [name: string]: any },
|
21 | ): (file: string, environment: { [name: string]: any }) => NodeJS.ReadWriteStream;
|
22 | export = envify;
|
23 | }
|
24 |
|
25 | ````
|
26 |
|
27 | ### Additional Details
|
28 | * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
|
29 | * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
|
30 |
|
31 | # Credits
|
32 | These definitions were written by [Qubo](https://github.com/tkQubo).
|
33 |
|
\ | No newline at end of file |