mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Fixed AudioContext's constants.
This commit is contained in:
parent
935f589da7
commit
fe93b913de
|
@ -25,9 +25,9 @@ import org.teavm.jso.typedarrays.ArrayBuffer;
|
|||
import org.teavm.jso.typedarrays.Float32Array;
|
||||
|
||||
public abstract class AudioContext implements JSObject {
|
||||
String STATE_SUSPENDED = "suspended";
|
||||
String STATE_RUNNING = "running";
|
||||
String STATE_CLOSE = "close";
|
||||
public static final String STATE_SUSPENDED = "suspended";
|
||||
public static final String STATE_RUNNING = "running";
|
||||
public static final String STATE_CLOSE = "close";
|
||||
|
||||
@JSProperty
|
||||
public abstract AudioDestinationNode getDestination();
|
||||
|
|
Loading…
Reference in New Issue
Block a user