Skip to main content

LatestValueData Interface

State of a value and its metadata.

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/presence/alpha.

For more information about our API support guarantees, see here.

Signature

/** @sealed */
export interface LatestValueData<T>

Type Parameters

Parameter Description
T

Properties

Property Alerts Type Description
metadata Alpha LatestValueMetadata
value Alpha InternalUtilityTypes.FullyReadonly<JsonDeserialized<T>>

Property Details

metadata

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/presence/alpha.

For more information about our API support guarantees, see here.

Signature

metadata: LatestValueMetadata;

Type: LatestValueMetadata

value

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/presence/alpha.

For more information about our API support guarantees, see here.

Signature

value: InternalUtilityTypes.FullyReadonly<JsonDeserialized<T>>;

Type: InternalUtilityTypes.FullyReadonly<JsonDeserialized<T>>