@types/envify
Version:
TypeScript definitions for envify
19 lines (15 loc) • 584 B
TypeScript
// 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;
}