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

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

package js.web.webaudio;

import js.lang.Unknown;
import js.util.buffers.Float32Array;
import org.teavm.jso.JSByRef;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface PeriodicWaveOptions extends PeriodicWaveConstraints {
    @JSProperty
    @Nullable
    Unknown getImag();

    @JSProperty
    void setImag(double[] imag);

    @JSProperty
    void setImag(Float32Array imag);

    @JSProperty
    @Nullable
    Unknown getReal();

    @JSProperty
    void setReal(double[] real);

    @JSProperty
    void setReal(Float32Array real);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy