ts-deepmerge
Advanced tools
Comparing version 1.1.0 to 2.0.0
interface IObject { | ||
[key: string]: any; | ||
[key: string]: unknown; | ||
} | ||
@@ -4,0 +4,0 @@ declare type TUnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; |
@@ -6,3 +6,3 @@ { | ||
"license": "ISC", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"keywords": [ | ||
@@ -9,0 +9,0 @@ "typescript", |
@@ -66,2 +66,4 @@ [![npm](https://img.shields.io/npm/v/ts-deepmerge)](https://www.npmjs.com/package/ts-deepmerge) | ||
```typescript | ||
import merge from "ts-deepmerge"; | ||
const obj1 = { | ||
@@ -68,0 +70,0 @@ array: ["A"], |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8204
89