Skip to main content
Version: v1

IResolvedFluidCodeDetails Interface

The interface returned from a IFluidCodeResolver which represents IFluidCodeDetails that have been resolved and are ready to load

Signature

export interface IResolvedFluidCodeDetails extends IFluidCodeDetails

Extends: IFluidCodeDetails

Properties

Property Type Description
resolvedPackage Readonly<IFluidPackage> A resolved version of the Fluid package. All Fluid browser file entries should be absolute urls.
resolvedPackageCacheId string | undefined If not undefined, this id will be used to cache the entry point for the code package

Property Details

resolvedPackage

A resolved version of the Fluid package. All Fluid browser file entries should be absolute urls.

Signature

readonly resolvedPackage: Readonly<IFluidPackage>;

Type: Readonly<IFluidPackage>

resolvedPackageCacheId

If not undefined, this id will be used to cache the entry point for the code package

Signature

readonly resolvedPackageCacheId: string | undefined;

Type: string | undefined