Change triggered by the Set Text update action.

interface SetTextChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "SetTextChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "SetTextChange"