DataObjectClass TypeAlias
A DataObjectClass is a class that has a factory that can create a DataObject and a constructor that will return the type of the DataObject.
Signature
export declare type DataObjectClass<T extends IFluidLoadable> = {
readonly factory: IFluidDataStoreFactory;
} & LoadableObjectCtor<T>;
Type Parameters
Parameter | Constraint | Description |
---|---|---|
T | IFluidLoadable | The class of the DataObject |