Skip to main content
Version: v1

IFluidMountableViewClass Interface

IFluidMountableViewClass defines the statics on our class implementing IFluidMountableView.

Signature

export interface IFluidMountableViewClass

Constructors

ConstructorReturn TypeDescription
new (view: FluidObject): IFluidMountableViewIFluidMountableView

Methods

MethodReturn TypeDescription
canMount(view)booleanTest whether the given view can be successfully mounted by a MountableView.

Constructor Details

new (view: FluidObject): IFluidMountableView

Signature

new (view: FluidObject): IFluidMountableView;

Parameters

ParameterTypeDescription
viewFluidObjectThe view to make mountable

Returns

Return type: IFluidMountableView

Method Details

canMount

Test whether the given view can be successfully mounted by a MountableView.

Signature

canMount(view: FluidObject): boolean;

Parameters

ParameterTypeDescription
viewFluidObjectthe view to test if it can be mounted.

Returns

Return type: boolean