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

    Interface DiffEdit

    A single edit in the diff result

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

    Properties

    expression?: ast.Expression

    Present for insert/remove edits

    source?: ast.Expression

    Present for move/update/keep edits

    target?: ast.Expression

    Present for move/update/keep edits

    type: EditType