Interface Action

interface Action {
    do: () => void;
    toggle: () => void;
    undo: () => void;
}

Implemented by

Properties

Properties

do: () => void
toggle: () => void
undo: () => void