com.github.fluorumlabs.disconnect.polymer.utils.HideTemplateControls Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-polymer Show documentation
Show all versions of disconnect-polymer Show documentation
Polymer 3 bindings for Disconnect Zero
package com.github.fluorumlabs.disconnect.polymer.utils;
import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.polymer.Polymer;
import js.lang.Any;
import org.teavm.jso.JSBody;
/**
* The interface Hide template controls.
*/
@NpmPackage(
name = "@polymer/polymer",
version = Polymer.VERSION
)
@Import(symbols = "hideElementsGlobally", module = "@polymer/polymer/lib/utils/hide-template-controls.js")
public interface HideTemplateControls extends Any {
/**
* Hide elements globally boolean.
*
* @return True if elements will be hidden globally
*/
@JSBody(
script = "return hideElementsGlobally()"
)
static boolean hideElementsGlobally() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy