Skip to content

Commit

Permalink
FIX/ts error in objects.ts (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustinSorel authored Jan 8, 2024
1 parent 4822ac5 commit 7d1bbb1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/runtime/src/objects.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export const objectsDiff = (oldObj: object, newObj: object) => {
export const objectsDiff = (
oldObj: Record<string, any>,
newObj: Record<string, any>,
) => {
const oldKeys = Object.keys(oldObj);
const newKeys = Object.keys(newObj);

Expand Down

0 comments on commit 7d1bbb1

Please sign in to comment.