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

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

package js.web.webaudio;

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

import javax.annotation.Nullable;


public interface AudioParamDescriptor extends Any {
    @JSProperty
    @Nullable
    AutomationRate getAutomationRate();

    @JSProperty
    void setAutomationRate(AutomationRate automationRate);

    @JSProperty
    double getDefaultValue();

    @JSProperty
    void setDefaultValue(double defaultValue);

    @JSProperty
    double getMaxValue();

    @JSProperty
    void setMaxValue(double maxValue);

    @JSProperty
    double getMinValue();

    @JSProperty
    void setMinValue(double minValue);

    @JSProperty
    String getName();

    @JSProperty
    void setName(String name);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy