Member Junction
    Preparing search index...

    Represents a single change detected during diff operation

    interface DeepDiffItem {
        children: DeepDiffItem[];
        description: string;
        isExpanded: boolean;
        level: number;
        newValue?: any;
        oldValue?: any;
        parentPath: string;
        path: string;
        type: DiffChangeType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    children: DeepDiffItem[]
    description: string

    Human-readable description of the change

    isExpanded: boolean
    level: number
    newValue?: any

    The new value (undefined for Removed changes)

    oldValue?: any

    The original value (undefined for Added changes)

    parentPath: string
    path: string

    The path to the changed value (e.g., "user.profile.name" or "items[2].id")

    The type of change that occurred