set

@JvmName(name = "setStyles")
inline operator fun DslMap<String, AssetBundle.StyleBundle, AssetBundleKt.Dsl.StylesProxy>.set(key: String, value: AssetBundle.StyleBundle)
Set of styles listed in this asset manifest. Like scripts, this is a map of dotted-path module names mapped to
their stylesheet sources and settings. Generally, the GSS module name is used for stylesheets.

map<string, .elide.assets.AssetBundle.StyleBundle> styles = 5;


@JvmName(name = "setScripts")
inline operator fun DslMap<String, AssetBundle.ScriptBundle, AssetBundleKt.Dsl.ScriptsProxy>.set(key: String, value: AssetBundle.ScriptBundle)
Set of scripts listed in this asset manifest. Like styles, this is a map of dotted-path module names mapped to
their script sources and settings. Generally, a Closure module name is used for scripts.

map<string, .elide.assets.AssetBundle.ScriptBundle> scripts = 6;


@JvmName(name = "setGeneric")
inline operator fun DslMap<String, AssetBundle.GenericBundle, AssetBundleKt.Dsl.GenericProxy>.set(key: String, value: AssetBundle.GenericBundle)
Generic assets which are mapped within this bundle.

map<string, .elide.assets.AssetBundle.GenericBundle> generic = 7;


@JvmName(name = "setAsset")
operator fun DslList<AssetBundle.AssetContent, AssetBundleKt.Dsl.AssetProxy>.set(index: Int, value: AssetBundle.AssetContent)
Inlined asset contents, which specify pre-compressed asset data corresponding to a given CSS or JavaScript code
bundle. The server may choose to serve this content rather than performing compression on-the-fly.

repeated .elide.assets.AssetBundle.AssetContent asset = 8;

Parameters

index

The index to set the value at.

value

The asset to set.