com.github.fluorumlabs.disconnect.polymer.elements.PolymerElement 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.elements;
import com.github.fluorumlabs.disconnect.core.annotations.Import;
import com.github.fluorumlabs.disconnect.core.annotations.NpmPackage;
import com.github.fluorumlabs.disconnect.polymer.Polymer;
import com.github.fluorumlabs.disconnect.polymer.elements.mixins.ElementMixin;
import js.web.dom.HTMLElement;
/**
* Base class that provides the core API for Polymer's meta-programming features including template stamping,
* data-binding, attribute deserialization, and property change observation.
*/
@NpmPackage(
name = "@polymer/polymer",
version = Polymer.VERSION
)
@Import(
symbols = "PolymerElement",
module = "@polymer/polymer/polymer-element.js"
)
public interface PolymerElement extends HTMLElement, ElementMixin {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy