Change triggered by the Remove TextLineItem update action.

interface RemoveTextLineItemChange {
    change: string;
    nextValue: TextLineItem;
    previousValue: TextLineItem;
    type: "RemoveTextLineItemChange";
}

Properties

change: string
nextValue: TextLineItem

Value after the change.

previousValue: TextLineItem

Value before the change.

type: "RemoveTextLineItemChange"