版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

59 строки
1.1 KiB

  1. import IHTMLMetaElement from './IHTMLMetaElement';
  2. import HTMLElement from '../html-element/HTMLElement';
  3. /**
  4. * HTML Meta Element.
  5. *
  6. * Reference:
  7. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement.
  8. */
  9. export default class HTMLMetaElement extends HTMLElement implements IHTMLMetaElement {
  10. /**
  11. * Returns content.
  12. *
  13. * @returns Content.
  14. */
  15. get content(): string;
  16. /**
  17. * Sets content.
  18. *
  19. * @param content Content.
  20. */
  21. set content(content: string);
  22. /**
  23. * Returns httpEquiv.
  24. *
  25. * @returns HttpEquiv.
  26. */
  27. get httpEquiv(): string;
  28. /**
  29. * Sets httpEquiv.
  30. *
  31. * @param httpEquiv HttpEquiv.
  32. */
  33. set httpEquiv(httpEquiv: string);
  34. /**
  35. * Returns name.
  36. *
  37. * @returns Name.
  38. */
  39. get name(): string;
  40. /**
  41. * Sets name.
  42. *
  43. * @param name Name.
  44. */
  45. set name(name: string);
  46. /**
  47. * Returns scheme.
  48. *
  49. * @returns Name.
  50. */
  51. get scheme(): string;
  52. /**
  53. * Sets scheme.
  54. *
  55. * @param scheme Scheme.
  56. */
  57. set scheme(scheme: string);
  58. }