-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fe4fcc
commit 6894436
Showing
12 changed files
with
85 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type Interface from "../../Interface/Merge/Into.js"; | ||
|
||
/** | ||
* @module Merge | ||
* | ||
*/ | ||
export default (await import("deepmerge-ts")).deepmergeIntoCustom({ | ||
// mergeOthers(m_target, values, utils, meta) { | ||
// // don't merge arrays only keep entryPoints | ||
// }, | ||
}) satisfies Interface as Interface; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import type { | ||
DeepMergeBuiltInMetaData, | ||
DeepMergeFunctionsDefaultURIs, | ||
DeepMergeHKT, | ||
} from "deepmerge-ts"; | ||
|
||
export default interface Interface { | ||
<Target extends object, Ts extends ReadonlyArray<object>>( | ||
target: Target, | ||
...objects: Ts | ||
): asserts target is Target & | ||
DeepMergeHKT< | ||
[Target, ...Ts], | ||
{ | ||
DeepMergeArraysURI: DeepMergeFunctionsDefaultURIs["DeepMergeArraysURI"]; | ||
DeepMergeFilterValuesURI: DeepMergeFunctionsDefaultURIs["DeepMergeFilterValuesURI"]; | ||
DeepMergeMapsURI: DeepMergeFunctionsDefaultURIs["DeepMergeMapsURI"]; | ||
DeepMergeOthersURI: DeepMergeFunctionsDefaultURIs["DeepMergeOthersURI"]; | ||
DeepMergeRecordsURI: DeepMergeFunctionsDefaultURIs["DeepMergeRecordsURI"]; | ||
DeepMergeSetsURI: DeepMergeFunctionsDefaultURIs["DeepMergeSetsURI"]; | ||
}, | ||
DeepMergeBuiltInMetaData | ||
>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
var e=(await import("deepmerge-ts")).deepmergeCustom({mergeArrays:!1});export{e as default}; | ||
var a=(t,e)=>o(t,e);const{default:o}=await import("./Merge/Into.js");export{o as Into,a as default}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type Interface from "../../Interface/Merge/Into.js"; | ||
/** | ||
* @module Merge | ||
* | ||
*/ | ||
declare const _default: Interface; | ||
export default _default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
var e=(await import("deepmerge-ts")).deepmergeIntoCustom({});export{e as default}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import type { DeepMergeBuiltInMetaData, DeepMergeFunctionsDefaultURIs, DeepMergeHKT } from "deepmerge-ts"; | ||
export default interface Interface { | ||
<Target extends object, Ts extends ReadonlyArray<object>>(target: Target, ...objects: Ts): asserts target is Target & DeepMergeHKT<[ | ||
Target, | ||
...Ts | ||
], { | ||
DeepMergeArraysURI: DeepMergeFunctionsDefaultURIs["DeepMergeArraysURI"]; | ||
DeepMergeFilterValuesURI: DeepMergeFunctionsDefaultURIs["DeepMergeFilterValuesURI"]; | ||
DeepMergeMapsURI: DeepMergeFunctionsDefaultURIs["DeepMergeMapsURI"]; | ||
DeepMergeOthersURI: DeepMergeFunctionsDefaultURIs["DeepMergeOthersURI"]; | ||
DeepMergeRecordsURI: DeepMergeFunctionsDefaultURIs["DeepMergeRecordsURI"]; | ||
DeepMergeSetsURI: DeepMergeFunctionsDefaultURIs["DeepMergeSetsURI"]; | ||
}, DeepMergeBuiltInMetaData>; | ||
} |
Empty file.