DefinitelyTyped/envify/envify.d.ts
2015-08-22 01:11:43 +09:00

15 lines
381 B
TypeScript

// Type definitions for envify
// Project: https://github.com/hughsk/envify
// Definitions by: Qubo <https://github.com/tkQubo>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "envify" {
var envify: Function;
export = envify;
}
declare module "envify/custom" {
function envify(environment: { [name: string]: any }): Function;
export = envify;
}