Packages > @fluidframework/container-loader > IFluidModuleWithDetails

IFluidModuleWithDetails Interface

API This

IFluidModuleWithDetails interface is moved to @fluidframework/container-definition#IFluidModuleWithDetails to have all the code loading modules in one package. #8193 Encapsulates a module entry point with corresponding code details.

Signature

export interface IFluidModuleWithDetails

Properties

Property Type Description
details IFluidCodeDetails Code details associated with the module. Represents a document schema this module supports. If the code loader implements the @fluidframework/core-interfaces#IFluidCodeDetailsComparer interface, it'll be called to determine whether the module code details satisfy the new code proposal in the quorum.
module IFluidModule Fluid code module that implements the runtime factory needed to instantiate the container runtime.

Property Details

details

Code details associated with the module. Represents a document schema this module supports. If the code loader implements the @fluidframework/core-interfaces#IFluidCodeDetailsComparer interface, it’ll be called to determine whether the module code details satisfy the new code proposal in the quorum.

Signature

details: IFluidCodeDetails;

Type: IFluidCodeDetails

module

Fluid code module that implements the runtime factory needed to instantiate the container runtime.

Signature

module: IFluidModule;

Type: IFluidModule