Skip to content

Commit

Permalink
✨ feat: add es build
Browse files Browse the repository at this point in the history
  • Loading branch information
eternallycyf committed Mar 25, 2024
1 parent 12bffb0 commit fbaa2de
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/ims-view-pc/src/core/helpers/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ export function getDictMap(dict: any) {
return dictMap;
}

/**
*
* @param a
* @param b
*/
export function mergeProps<A, B>(a: A, b: B): B & A;
export function mergeProps<A, B, C>(a: A, b: B, c: C): C & B & A;
export function mergeProps(...items: any[]) {
Expand Down

0 comments on commit fbaa2de

Please sign in to comment.