版博士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.

HTMLVideoElement.d.ts 341 B

пре 1 година
1234567891011
  1. import HTMLMediaElement from '../html-media-element/HTMLMediaElement';
  2. import IHTMLVideoElement from './IHTMLVideoElement';
  3. /**
  4. * HTML Video Element.
  5. *
  6. * Reference:
  7. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement.
  8. *
  9. */
  10. export default class HTMLVideoElement extends HTMLMediaElement implements IHTMLVideoElement {
  11. }