版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

14 righe
322 B

  1. import IHTMLElement from '../html-element/IHTMLElement';
  2. /**
  3. * HTML Meta Element.
  4. *
  5. * Reference:
  6. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement.
  7. */
  8. export default interface IHTMLMetaElement extends IHTMLElement {
  9. content: string;
  10. httpEquiv: string;
  11. name: string;
  12. scheme: string;
  13. }