Skip to main content
Version: v1

IFluidCodeDetails Interface

This API is deprecated and will be removed in a future release.

in favor of @fluidframework/container-definitions/fluidPackage.ts#IFluidCodeDetails to have code loading modules in same package. Data structure used to describe the code to load on the Fluid document

Signature​

export interface IFluidCodeDetails

Properties​

PropertyModifiersTypeDescription
configoptionalIFluidCodeDetailsConfigConfiguration details. This includes links to the package manager and base CDNs.
packagestring | Readonly<IFluidPackage>The code package to be used on the Fluid document. This is either the package name which will be loaded from a package manager. Or the expanded Fluid package.

Property Details​

config​

Configuration details. This includes links to the package manager and base CDNs.

Signature​

readonly config?: IFluidCodeDetailsConfig;

Type: IFluidCodeDetailsConfig

package​

The code package to be used on the Fluid document. This is either the package name which will be loaded from a package manager. Or the expanded Fluid package.

Signature​

readonly package: string | Readonly<IFluidPackage>;

Type: string | Readonly<IFluidPackage>