mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
9 lines
344 B
TypeScript
9 lines
344 B
TypeScript
// Type definitions for extend v2.0.0
|
|
// Project: https://www.npmjs.com/package/extend
|
|
// Definitions by: Stefan Steinhart <https://github.com/reppners>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
declare module "extend" {
|
|
|
|
function extend(deepOrObject:boolean | Object, ...objectN: Object[]): any;
|
|
export = extend;
|
|
} |