Overview
Observer/proxy pair support for indexed-value scenarios.
API Reference
Interface exported from property-observer/factories/indexed-value-observer-proxy-pair.
export interface ISubscriptionInfo<TIndex>
extends ISubscriptionIdInfo<TIndex>, IChangeSubscriptionsCreateMethods {
initialValue?: unknown;
indexValueObserver?: IObserver;
owner: IDisposableOwner;
initializeManually?: boolean;
mustHandleChange?: (change: IPropertyChange) => boolean;
}import type { ISubscriptionInfo } from '@rs-x/state-manager';5 members in this interface.
indexValueObserver?: IObserverType
initializeManually?: booleanType
boolean
initialValue?: unknownType
unknown
mustHandleChange?: (change: IPropertyChange) => booleanType
(change: IPropertyChange) => boolean
owner: IDisposableOwnerType