Interface DiffResult<T>

Represents the result of a diff operation.

interface DiffResult<T> {
    details?: DiffResult<T>[];
    type: DiffType;
    value: T;
}

Type Parameters

  • T

    The type of the value in the diff result.

Properties

Properties

details?: DiffResult<T>[]

The details of the diff.

type: DiffType

The type of the diff.

value: T

The value of the diff.