Skip to main content

LatestMapArgumentsRaw Interface

Arguments that are passed to the StateFactory.latestMap function.

This API is provided as a beta preview and may change without notice.

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

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

Input

This type is "input," meaning that code outside of the library defining it should not read from it. Future versions of this type may add optional members or make typing of members more general.

Signature

export interface LatestMapArgumentsRaw<T, Keys extends string | number = string | number>

Type Parameters

ParameterConstraintDefaultDescription
T
Keysstring | numberstring | number

Properties

PropertyAlertsModifiersTypeDescription
localBetaoptional{ [K in Keys]: JsonSerializable<T>; }The initial value of the local state.
settingsBetaoptionalBroadcastControlSettings | undefinedSee BroadcastControlSettings.

Property Details

local

The initial value of the local state.

This API is provided as a beta preview and may change without notice.

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

Signature

local?: {
[K in Keys]: JsonSerializable<T>;
};

Type: { [K in Keys]: JsonSerializable<T>; }

settings

See BroadcastControlSettings.

This API is provided as a beta preview and may change without notice.

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

Signature

settings?: BroadcastControlSettings | undefined;

Type: BroadcastControlSettings | undefined