@openscd/oscd-api
    Preparing search index...

    Interface Commit<Change>

    Record of changes committed

    interface Commit<Change> {
        redo: Change[];
        time: number;
        title?: string;
        undo: Change[];
    }

    Type Parameters

    • Change
    Index

    Properties

    Properties

    redo: Change[]

    The changes that were committed

    time: number

    Time of creation (milliseconds from epoch)

    title?: string

    An optional human-readable description of the committed changes

    undo: Change[]

    The inverse of the changes that were committed