map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface CollectionChangedEvent<T>

    Represents a common event when collection is changed.

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

    Type Parameters

    • T
    Index

    Properties

    Properties

    added: T[]

    added items.

    deleted: T[]

    removed items.

    updated: T[]

    Items which values are updated within the collection.