Mypal/dom/webidl/RTCDTMFToneChangeEvent.webidl

9 lines
247 B
Plaintext
Raw Normal View History

2019-03-11 03:26:37 -07:00
[Constructor(DOMString type, optional RTCDTMFToneChangeEventInit eventInitDict)]
interface RTCDTMFToneChangeEvent : Event {
readonly attribute DOMString tone;
};
dictionary RTCDTMFToneChangeEventInit : EventInit {
DOMString tone = "";
};