Skip to content

Commit 71ad4d3

Browse files
committed
lets change the function signature back
1 parent 0747cfb commit 71ad4d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/packages/generator/src/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export { ProcessedChain };
1717
/**
1818
* Deep merge utility for nested objects
1919
*/
20-
export function deepMerge<T>(target: T, source: Partial<T>): T {
20+
export function deepMerge(target: any, source: any): any {
2121
const result = { ...target };
2222

2323
Object.keys(source).forEach((key) => {

0 commit comments

Comments
 (0)