mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
Automatic update from web-platform-testsUpdate interfaces/webmidi.idl (#13609) Source: https://github.com/tidoust/reffy-reports/blob/a37e00b/whatwg/idl/webmidi.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/443539880 -- wpt-commits: 0d9bba1ba966c053757cba6230cd46e54d601e5e wpt-pr: 13609
84 lines
2.1 KiB
Text
84 lines
2.1 KiB
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Web MIDI API (http://webaudio.github.io/web-midi-api/)
|
|
|
|
partial interface Navigator {
|
|
[SecureContext] Promise<MIDIAccess> requestMIDIAccess(optional MIDIOptions options);
|
|
};
|
|
|
|
dictionary MIDIOptions {
|
|
boolean sysex;
|
|
boolean software;
|
|
};
|
|
|
|
interface MIDIInputMap {
|
|
readonly maplike<DOMString, MIDIInput>;
|
|
};
|
|
|
|
interface MIDIOutputMap {
|
|
readonly maplike<DOMString, MIDIOutput>;
|
|
};
|
|
|
|
[SecureContext] interface MIDIAccess : EventTarget {
|
|
readonly attribute MIDIInputMap inputs;
|
|
readonly attribute MIDIOutputMap outputs;
|
|
attribute EventHandler onstatechange;
|
|
readonly attribute boolean sysexEnabled;
|
|
};
|
|
|
|
[SecureContext] interface MIDIPort : EventTarget {
|
|
readonly attribute DOMString id;
|
|
readonly attribute DOMString? manufacturer;
|
|
readonly attribute DOMString? name;
|
|
readonly attribute MIDIPortType type;
|
|
readonly attribute DOMString? version;
|
|
readonly attribute MIDIPortDeviceState state;
|
|
readonly attribute MIDIPortConnectionState connection;
|
|
attribute EventHandler onstatechange;
|
|
Promise<MIDIPort> open();
|
|
Promise<MIDIPort> close();
|
|
};
|
|
|
|
[SecureContext] interface MIDIInput : MIDIPort {
|
|
attribute EventHandler onmidimessage;
|
|
};
|
|
|
|
[SecureContext] interface MIDIOutput : MIDIPort {
|
|
void send(sequence<octet> data, optional DOMHighResTimeStamp timestamp = 0);
|
|
void clear();
|
|
};
|
|
|
|
enum MIDIPortType {
|
|
"input",
|
|
"output",
|
|
};
|
|
|
|
enum MIDIPortDeviceState {
|
|
"disconnected",
|
|
"connected",
|
|
};
|
|
|
|
enum MIDIPortConnectionState {
|
|
"open",
|
|
"closed",
|
|
"pending",
|
|
};
|
|
|
|
[SecureContext, Constructor(DOMString type, optional MIDIMessageEventInit eventInitDict)]
|
|
interface MIDIMessageEvent : Event {
|
|
readonly attribute Uint8Array data;
|
|
};
|
|
|
|
dictionary MIDIMessageEventInit : EventInit {
|
|
Uint8Array data;
|
|
};
|
|
|
|
[SecureContext, Constructor(DOMString type, optional MIDIConnectionEventInit eventInitDict)]
|
|
interface MIDIConnectionEvent : Event {
|
|
readonly attribute MIDIPort port;
|
|
};
|
|
|
|
dictionary MIDIConnectionEventInit : EventInit {
|
|
MIDIPort port;
|
|
};
|