版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IHTMLAudioElement.d.ts 277 B

123456789
  1. import IHTMLMediaElement from '../html-media-element/IHTMLMediaElement';
  2. /**
  3. * HTML Audio Element.
  4. *
  5. * Reference:
  6. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement.
  7. */
  8. declare type IHTMLAudioElement = IHTMLMediaElement;
  9. export default IHTMLAudioElement;