UNPKG

@types/envify

Version:
33 lines (25 loc) 1.01 kB
# Installation > `npm install --save @types/envify` # Summary This package contains type definitions for envify (https://github.com/hughsk/envify). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/envify. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/envify/index.d.ts) ````ts /// <reference types="node" /> declare module "envify" { var envify: (file: string, environment: { [name: string]: any }) => NodeJS.ReadWriteStream; export = envify; } declare module "envify/custom" { function envify( environment: { [name: string]: any }, ): (file: string, environment: { [name: string]: any }) => NodeJS.ReadWriteStream; export = envify; } ```` ### Additional Details * Last updated: Mon, 06 Nov 2023 22:41:05 GMT * Dependencies: [@types/node](https://npmjs.com/package/@types/node) # Credits These definitions were written by [Qubo](https://github.com/tkQubo).