blob: 8cdae1592d439e8e5de9e035827a81be571ce0b8 (
plain)
1
2
3
4
5
6
7
8
|
[Constructor(DOMString type, optional RTCDTMFToneChangeEventInit eventInitDict)]
interface RTCDTMFToneChangeEvent : Event {
readonly attribute DOMString tone;
};
dictionary RTCDTMFToneChangeEventInit : EventInit {
DOMString tone = "";
};
|