Change triggered by the Set State roles update action.

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

Properties

change: string
nextValue: string[]

Value after the change.

previousValue: string[]

Value before the change.

type: "SetStateRolesChange"