NodeChangedDataDelta Interface
Data carried by the nodeChanged event for array nodes.
To use, import via fluid-framework/alpha.
For more information about our API support guarantees, see here.
This type is "sealed," meaning that code outside of the library defining it should not implement or extend it. Future versions of this type may add members or make typing of readonly members more specific.
Signature
/** @sealed */
export interface NodeChangedDataDelta
Properties
| Property | Alerts | Modifiers | Type | Description |
|---|---|---|---|---|
| delta | Alpha | readonly | readonly ArrayNodeDeltaOp[] | undefined | The sequential operations describing what changed in the array node. |
Property Details
delta
The sequential operations describing what changed in the array node.
For more information about our API support guarantees, see here.
Signature
readonly delta: readonly ArrayNodeDeltaOp[] | undefined;
Type: readonly ArrayNodeDeltaOp[] | undefined
Remarks
The value may be undefined when the document was updated in a way that required multiple internal change passes in a single operation (for example, a data change combined with a schema upgrade).
See ArrayNodeDeltaOp for op semantics.