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

js.web.indexeddb.IDBIndexParameters Maven / Gradle / Ivy

package js.web.indexeddb;

import js.lang.Any;
import org.teavm.jso.JSProperty;


public interface IDBIndexParameters extends Any {
    @JSProperty
    boolean isMultiEntry();

    @JSProperty
    void setMultiEntry(boolean multiEntry);

    @JSProperty
    boolean isUnique();

    @JSProperty
    void setUnique(boolean unique);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy