Member Junction
    Preparing search index...

    The result of comparing two labels or a label to the current state.

    interface DiffResult {
        EntityDiffs: EntityDiffGroup[];
        FromLabelID: string;
        FromLabelName: string;
        Summary: DiffSummary;
        ToLabelID: string;
        ToLabelName: string;
    }
    Index

    Properties

    EntityDiffs: EntityDiffGroup[]

    Changes grouped by entity

    FromLabelID: string

    The starting label

    FromLabelName: string
    Summary: DiffSummary

    Summary statistics

    ToLabelID: string

    The ending label (null if comparing to current state)

    ToLabelName: string