Change triggered by the Change Description update action.

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

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "ChangeDescriptionChange"