Юниверс DG SDK UI
v2.15.0

Интерфейс IArrayChange<T>

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

Параметры типа

  • T = any
Индекс

Свойства

Свойства

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