mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
// 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;
|
|
} |