IFluidBrowserPackageEnvironment Interface
A specific Fluid package environment for browsers
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/container-definitions/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface IFluidBrowserPackageEnvironment extends IFluidPackageEnvironment
Extends: IFluidPackageEnvironment
Properties
Property | Alerts | Type | Description |
---|---|---|---|
umd | Alpha |
{ files: string[]; library: string; } | The Universal Module Definition (umd) target specifics the scripts necessary for loading a packages in a browser environment and finding its entry point. |
Property Details
umd
The Universal Module Definition (umd) target specifics the scripts necessary for loading a packages in a browser environment and finding its entry point.
This API is provided for existing users, but is not recommended for new users.
For more information about our API support guarantees, see here.
Signature
umd: {
files: string[];
library: string;
};
Type: { files: string[]; library: string; }