Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More specific type for detailedDiff()? #50

Open
benallfree opened this issue Nov 1, 2019 · 1 comment
Open

More specific type for detailedDiff()? #50

benallfree opened this issue Nov 1, 2019 · 1 comment

Comments

@benallfree
Copy link

benallfree commented Nov 1, 2019

Would something like this make sense? If so I can submit a PR.

export type DetailedDiffResult = {
  deleted: object;
  added: object;
  updated: object;
};

export function detailedDiff(
  originalObj: object,
  updatedObj: object
): DetailedDiffResult;
@MarkMilfordMe
Copy link

I agree this would be useful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants