Documentation - v0.27.3
    Preparing search index...

    Interface BasicDiff<T, K>

    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

    Index

    Properties

    added: T[]

    Added elements

    modified: K[]

    Modified elements

    removed: T[]

    Removed elements