@types/object-assign-deep
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -7,3 +7,3 @@ // Type definitions for object-assign-deep 0.4 | ||
declare const objectAssignDeep: ObjectConstructor['assign']; | ||
declare const objectAssignDeep: ObjectConstructor["assign"]; | ||
@@ -15,3 +15,3 @@ interface Options { | ||
interface objectAssignDeep { | ||
noMutate: ObjectConstructor['assign']; | ||
noMutate: ObjectConstructor["assign"]; | ||
@@ -18,0 +18,0 @@ withOptions<T, U>(target: T, objects: [U], options: Options): T & U; |
{ | ||
"name": "@types/object-assign-deep", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "TypeScript definitions for object-assign-deep", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign-deep", | ||
"license": "MIT", | ||
@@ -14,3 +15,3 @@ "contributors": [ | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -23,4 +24,4 @@ "type": "git", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "b6b31aad85099c0575cf27e6c3346554f677a513380047c4da4d375682cd7c8a", | ||
"typeScriptVersion": "2.1" | ||
"typesPublisherContentHash": "98e0babf8b9b8a7cf44275973f1acf60a09eee23187365081d6004ecd5e3d096", | ||
"typeScriptVersion": "4.3" | ||
} |
@@ -8,6 +8,32 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign-deep | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign-deep. | ||
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/object-assign-deep/index.d.ts) | ||
````ts | ||
// Type definitions for object-assign-deep 0.4 | ||
// Project: https://github.com/saikojosh/Object-Assign-Deep#readme | ||
// Definitions by: Nick Clifford <https://github.com/nickbclifford> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.1 | ||
Additional Details | ||
* Last updated: Thu, 10 Oct 2019 22:15:15 GMT | ||
declare const objectAssignDeep: ObjectConstructor["assign"]; | ||
interface Options { | ||
arrayBehaviour: "replace" | "merge"; | ||
} | ||
interface objectAssignDeep { | ||
noMutate: ObjectConstructor["assign"]; | ||
withOptions<T, U>(target: T, objects: [U], options: Options): T & U; | ||
withOptions<T, U, V>(target: T, objects: [U, V], options: Options): T & U & V; | ||
withOptions<T, U, V, W>(target: T, objects: [U, V, W], options: Options): T & U & V & W; | ||
withOptions(target: any, objects: any[], options: Options): any; | ||
} | ||
export = objectAssignDeep; | ||
```` | ||
### Additional Details | ||
* Last updated: Sun, 03 Sep 2023 22:33:45 GMT | ||
* Dependencies: none | ||
@@ -17,2 +43,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Nick Clifford <https://github.com/nickbclifford>. | ||
These definitions were written by [Nick Clifford](https://github.com/nickbclifford). |
Sorry, the diff of this file is not supported yet
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
4311
1
43