Type alias CollectionChangeSet

CollectionChangeSet: {
    deletions: number[];
    insertions: number[];
    newModifications: number[];
    oldModifications: number[];
}

Type declaration

  • deletions: number[]

    The indices in the collection where objects were deleted.

  • insertions: number[]

    The indices in the collection where objects were inserted.

  • newModifications: number[]

    The indices in the new state of the collection where objects were modified.

  • oldModifications: number[]

    The indices in the old state of the collection where objects were modified.

Generated using TypeDoc