Search
    Preparing search index...
    interface IArrayChange<T = any> {
        index: number;
        newValue: T;
        object: IObservableArray<T>;
        oldValue: T;
        type: "update";
    }

    Type Parameters

    • T = any
    Index

    Properties

    index: number
    newValue: T
    oldValue: T
    type: "update"