com.vaadin.polymer.elemental.CSSStyleDeclaration Maven / Gradle / Ivy
The newest version!
package com.vaadin.polymer.elemental;
import static jsinterop.annotations.JsPackage.GLOBAL;
import jsinterop.annotations.JsType;
@JsType(isNative=true, namespace=GLOBAL)
public interface CSSStyleDeclaration {
String getPropertyValue(String property);
void setProperty(String property, String value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy