set
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.
Content copied to clipboard
map<string, .elide.assets.AssetBundle.StyleBundle> styles = 5;
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.
Content copied to clipboard
map<string, .elide.assets.AssetBundle.ScriptBundle> scripts = 6;
inline operator fun DslMap<String, AssetBundle.GenericBundle, AssetBundleKt.Dsl.GenericProxy>.set(key: String, value: AssetBundle.GenericBundle)
Generic assets which are mapped within this bundle.
Content copied to clipboard
map<string, .elide.assets.AssetBundle.GenericBundle> generic = 7;
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.
Content copied to clipboard
repeated .elide.assets.AssetBundle.AssetContent asset = 8;
Parameters
index
The index to set the value at.
value
The asset to set.