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

IHTMLOptGroupElement.d.ts 295 B

пре 1 година
1234567891011
  1. import IHTMLElement from '../html-element/IHTMLElement';
  2. /**
  3. * HTML Opt Group Element.
  4. *
  5. * Reference:
  6. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement.
  7. */
  8. export default interface IHTMLOptGroupElement extends IHTMLElement {
  9. disabled: boolean;
  10. label: string;
  11. }