Kvaser CanKing GUI Extensions SDK - v7.5.1
    Preparing search index...

    Interface IUndoState<T>

    The undo/redo state.

    interface IUndoState<T> {
        current?: T;
        next: T[];
        previous: T[];
    }

    Type Parameters

    • T

      The type of the undo/redo data.

    Index

    Properties

    current?: T

    The current value

    next: T[]

    The next values

    previous: T[]

    The previous values