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

elemental2.indexeddb.IDBVersionChangeEventInit Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
package elemental2.indexeddb;

import elemental2.dom.EventInit;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
import jsinterop.base.JsPropertyMap;

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface IDBVersionChangeEventInit extends EventInit {
  @JsOverlay
  static IDBVersionChangeEventInit create() {
    return Js.uncheckedCast(JsPropertyMap.of());
  }

  @JsProperty
  double getNewVersion();

  @JsProperty
  double getOldVersion();

  @JsProperty
  void setNewVersion(double newVersion);

  @JsProperty
  void setOldVersion(double oldVersion);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy