Basic difference type

interface BasicDiff<T, K> {
    added: T[];
    modified: K[];
    removed: T[];
}

Type Parameters

  • T

    Type that is being diff-ed

  • K

    Information about the modifications

Properties

added: T[]

Added elements

modified: K[]

Modified elements

removed: T[]

Removed elements