IValueChanged Interface
Packages > @fluidframework/map > IValueChanged
Type of “valueChanged” event parameter.
Signature:
export interface IValueChanged
Properties
Property | Type | Description |
---|---|---|
key | string | The key storing the value that changed. |
previousValue | any | The value that was stored at the key prior to the change. |
Events
key
The key storing the value that changed.
Signature:
key: string;
previousValue
The value that was stored at the key prior to the change.
Signature:
previousValue: any;