Change triggered by the Add State roles update action.

interface AddStateRolesChange {
    change: string;
    nextValue: string[];
    previousValue: string[];
    type: "AddStateRolesChange";
}

Properties

change: string
nextValue: string[]

Value after the change.

previousValue: string[]

Value before the change.

type: "AddStateRolesChange"