LatestRawConfiguration TypeAlias
Type alias for the return type of LatestFactory when called with LatestArgumentsRaw.
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.
Sealed
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 type LatestRawConfiguration<T extends object | null, RegistrationKeyRestrictions extends string = string> = InternalTypes.ManagerFactory<RegistrationKeyRestrictions, InternalTypes.ValueRequiredState<T>, LatestRaw<T>>;
Type Parameters
| Parameter | Constraint | Default | Description |
|---|---|---|---|
| T | object | null | ||
| RegistrationKeyRestrictions | string | string | Optional type parameter to constrain allowed registration keys for this State object within a workspace. Specification is recommended to highlight connection between schema and factory when spread across modules. |
Remarks
Use this type instead of any InternalPresenceTypes that may be revealed from examining factory return type.