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.
Signature
export declare type FluidObjectSymbolProvider<T> = {
[P in keyof T]?: P;
};
Type Parameters
Parameter | Description |
---|---|
T |
Example
- { IFoo: "IFoo" }