@eagleoutice/flowr - v2.10.1
    Preparing search index...

    Interface GenericDifferenceInformation<Report>

    Identifies the information required by the core difference functions. The leftname and rightname fields are only used to provide more useful information in the difference report.

    interface GenericDifferenceInformation<Report extends WriteableDifferenceReport> {
        config: GenericDiffConfiguration;
        leftname: string;
        position: string;
        report: Report;
        rightname: string;
        [key: string]: unknown;
    }

    Type Parameters

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of GenericDifferenceInformation
    Index

    Properties

    leftname: string

    A human-readable name for the left structure in left == right.

    position: string

    A human-readable indication of where we are (the prefix of the information if the structures differ)

    report: Report

    The report on the difference of the two structures.

    rightname: string

    A human-readable name for the right structure in left == right.