mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
// Type definitions for defaults-deep 0.2
|
|
// Project: https://github.com/jonschlinkert/defaults-deep
|
|
// Definitions by: Hugo Alliaume <https://github.com/Kocal>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface Obj {
|
|
[k: string]: any;
|
|
}
|
|
|
|
declare function defaultsDeep(...objs: Obj[]): Obj;
|
|
|
|
export = defaultsDeep;
|