Polyglot SQL API Documentation - v0.2.0
    Preparing search index...

    Interface DiffEdit

    A single edit in the diff result

    interface DiffEdit {
        expression?: Expression;
        source?: Expression;
        target?: Expression;
        type: EditType;
    }
    Index

    Properties

    expression?: Expression

    Present for insert/remove edits

    source?: Expression

    Present for move/update/keep edits

    target?: Expression

    Present for move/update/keep edits

    type: EditType