All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elemental2.dom.CSSKeyframesRule Maven / Gradle / Ivy

There is a newer version: 2.27
Show newest version
package elemental2.dom;

import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface CSSKeyframesRule {
  Object appendRule(String rule);

  Object deleteRule(String key);

  CSSKeyframeRule findRule(String key);

  @JsProperty
  CSSRuleList getCssRules();

  @JsProperty
  String getName();

  @JsProperty
  void setCssRules(CSSRuleList cssRules);

  @JsProperty
  void setName(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy