mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
408 B
TypeScript
12 lines
408 B
TypeScript
// Type definitions for just-extend 1.1
|
|
// Project: https://github.com/angus-c/just#readme
|
|
// Definitions by: Peter Safranek <https://github.com/pe8ter>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
declare function extend(obj1: object, ...objn: any[]): object;
|
|
|
|
declare function extend(deep: boolean, obj1: object, ...objn: any[]): object;
|
|
|
|
export = extend;
|