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
// Type definitions for envify
// Project: https://github.com/hughsk/envify
// Definitions by: Qubo <https://github.com/tkQubo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <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: Sat, 23 Sep 2023 17:07:22 GMT
- Dependencies: @types/node
- Global values: none
Credits
These definitions were written by Qubo.