Files
tubestation/dom/webidl/RTCDTMFToneChangeEvent.webidl
2016-09-14 08:53:23 -04:00

9 lines
247 B
Plaintext

[Constructor(DOMString type, optional RTCDTMFToneChangeEventInit eventInitDict)]
interface RTCDTMFToneChangeEvent : Event {
readonly attribute DOMString tone;
};
dictionary RTCDTMFToneChangeEventInit : EventInit {
DOMString tone = "";
};