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

js.util.RegExpMatchArray Maven / Gradle / Ivy

package js.util;

import js.lang.JsString;
import js.util.collections.Array;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RegExpMatchArray extends Array {
    @JSProperty
    int getIndex();

    @JSProperty
    void setIndex(int value);

    @Nullable
    @JSProperty
    String getInput();

    @JSProperty
    void setInput(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy