hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface ContentChangeEvent<T>

    Interface for a content change event in the collection view.

    interface ContentChangeEvent<T> {
        changes: any[];
        content: T;
        itemIndex?: number;
        result: ChangeResult;
    }

    Type Parameters

    • T
    Index

    Properties

    changes: any[]

    The list of changes applied.

    content: T

    The content affected by the change.

    itemIndex?: number

    The item index affected, if any.

    result: ChangeResult

    The result of the change operation.