Skip to main content
Version: v1

IFluidModuleWithDetails Interface

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