Interface CollectionChangedEvent<T>

Represents a common event when collection is changed.

interface CollectionChangedEvent<T> {
    added: T[];
    deleted: T[];
    updated: T[];
}

Type Parameters

  • T

Properties

Properties

added: T[]

added items.

deleted: T[]

removed items.

updated: T[]

Items which values are updated within the collection.

Generated using TypeDoc