Interface SerializableCodeMutation

Represents a mutation to the code. This is a serializable version of CodeMutation. This should be in the order that the changes should be applied (commonly, in reverse order).

interface SerializableCodeMutation {
    codeChanges: SerializableCodeChange[];
    operatorId: string;
}

Properties

codeChanges: SerializableCodeChange[]
operatorId: string