mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
557 B
TypeScript
17 lines
557 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;
|
|
}
|