Skip to main content
Version: v1

IFluidBrowserPackageEnvironment Interface

A specific Fluid package environment for browsers

Signature

export interface IFluidBrowserPackageEnvironment extends IFluidPackageEnvironment

Extends: IFluidPackageEnvironment

Properties

Property Type Description
umd { 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

Signature

umd: {
files: string[];
library: string;
};

Type: { files: string[]; library: string; }