Skip to main content
Version: v1

IFluidPackageEnvironment Interface

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

in favor of @fluidframework/container-definitions/fluidPackage.ts#IFluidPackageEnvironment to have code loading modules in same package. Specifies an environment on Fluid property of a IFluidPackage

Signature

export interface IFluidPackageEnvironment

Index Signatures

IndexSignature Description
[target: string]: undefined | { files: string[]; [key: string]: unknown; } The name of the target. For a browser environment, this could be umd for scripts or css for styles.

Index Signature Details

[target: string]: undefined | { files: string[]; [key: string]: unknown; }

The name of the target. For a browser environment, this could be umd for scripts or css for styles.

Signature

[target: string]: undefined | {
files: string[];
[key: string]: unknown;
};