Skip to main content

IFluidLoadable Interface

A shared FluidObject with a handle that can be used to retrieve it.

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 interface IFluidLoadable extends IProvideFluidLoadable

Extends: IProvideFluidLoadable

Remarks

In this context, "shared" means that the object might be shared via a Fluid service and thus could be viewed and edited by other clients.

Properties

Property Modifiers Type Description
handle readonly IFluidHandle Handle to this loadable FluidObject.

Property Details

handle

Handle to this loadable FluidObject.

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
readonly handle: IFluidHandle;

Type: IFluidHandle