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

js.util.Record Maven / Gradle / Ivy

package js.util;

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


public interface Record extends Any {
    @JSIndexer
    V get(String key);

    @JSIndexer
    void set(String key, V value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy