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

js.web.webspeech.SpeechRecognitionResultList Maven / Gradle / Ivy

package js.web.webspeech;

import js.util.collections.ArrayLike;
import org.teavm.jso.JSBody;


public interface SpeechRecognitionResultList extends ArrayLike {

    @JSBody(script = "return SpeechRecognitionResultList.prototype")
    static SpeechRecognitionResultList prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new SpeechRecognitionResultList()")
    static SpeechRecognitionResultList create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    SpeechRecognitionResult item(int index);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy