+ typings for extend including tests

This commit is contained in:
reppners
2015-03-06 09:10:15 +01:00
parent 69bdfb0884
commit 81b7aef410
2 changed files with 50 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for Node.js v0.12.0
// Project: http://nodejs.org/
// Definitions by: Stefan Steinhart <https://github.com/reppners>
// Definitions: https://github.com/borisyankov/DefinitelyType
declare module "extend" {
function extend(deepOrObject:boolean | Object, ...objectN: Object[]): any;
export = extend;
}