Skip to content

Commit

Permalink
Fixed: TS7006: Parameter 'target' implicitly has an 'any' type.
Browse files Browse the repository at this point in the history
  • Loading branch information
erayhanoglu committed Feb 16, 2023
1 parent c7e2b06 commit b6883ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/merge.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ declare namespace merge {

export function all(object: Array<object>, options?: IMergeOptions): object;

export function arrayCombine(target, source: Array<any>): Array<any>;
export function arrayCombine(target: any, source: Array<any>): Array<any>;

}

0 comments on commit b6883ae

Please sign in to comment.