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

js.web.webaudio.AudioContextInfo Maven / Gradle / Ivy

package js.web.webaudio;

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


public interface AudioContextInfo extends Any {
    @JSProperty
    double getCurrentTime();

    @JSProperty
    void setCurrentTime(double currentTime);

    @JSProperty
    int getSampleRate();

    @JSProperty
    void setSampleRate(int sampleRate);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy