The Asset Library environment which assets should be searched within. In most cases Production should be used. Used with "LensStudio:AssetLibrary".EnvironmentSetting.
Production
"LensStudio:AssetLibrary".Asset.
const envs: [string, Environment][] = [ ['Invalid', Environment.Invalid], ['Production', Environment.Production], ['Staging', Environment.Staging], ]; for (const [name, value] of envs) { console.log(`Environment.${name} = ${value}`); } console.log('Use Production for live assets, Staging for pre-release testing.'); Copy
const envs: [string, Environment][] = [ ['Invalid', Environment.Invalid], ['Production', Environment.Production], ['Staging', Environment.Staging], ]; for (const [name, value] of envs) { console.log(`Environment.${name} = ${value}`); } console.log('Use Production for live assets, Staging for pre-release testing.');
Represents an invalid or unset environment state.
Targets the live production Asset Library environment.
Targets the staging Asset Library environment for pre-release testing.
The Asset Library environment which assets should be searched within. In most cases
Productionshould be used. Used with "LensStudio:AssetLibrary".EnvironmentSetting.See
"LensStudio:AssetLibrary".Asset.
Example