Skip to main content

FluidObjectSymbolProvider TypeAlias

This is a condensed version of Record that requires the object has all the FluidObject properties as its type mapped to a string representation of that property.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/synthesize/legacy.

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

Signature

export type FluidObjectSymbolProvider<T> = {
[P in keyof T]?: P;
};

Type Parameters

Parameter Description
T

Example

{ IFoo: "IFoo" }