@maxgraph/core
    Preparing search index...

    Interface UndoableChange

    interface UndoableChange {
        execute: () => void;
        redo?: () => void;
        undo?: () => void;
    }

    Implemented by

    Index

    Properties

    Properties

    execute: () => void
    redo?: () => void
    undo?: () => void