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

elemental2.webstorage.Storage Maven / Gradle / Ivy

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

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

@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface Storage {
  void clear();

  String getItem(String key);

  @JsProperty
  int getLength();

  String key(int index);

  void removeItem(String key);

  void setItem(String key, String data);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy