UNPKG

anux-common

Version:

[![Build Status](https://travis-ci.com/Anupheaus/anux-common.svg?branch=master)](https://travis-ci.com/Anupheaus/anux-common) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/dd0e0bd3a96247a5a78c02a812f949f8)](https://www.codacy.com/app/Anuphea

10 lines (9 loc) 212 B
export interface IMatchedArrayDiffItem<T, P> { sourceItem: T; targetItem: P; } export interface IArrayDiff<T, P> { added: P[]; removed: T[]; matched: IMatchedArrayDiffItem<T, P>[]; }