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

IHTMLLabelElement.d.ts 407 B

12345678910111213
  1. import IHTMLElement from '../html-element/IHTMLElement';
  2. import IHTMLFormElement from '../html-form-element/IHTMLFormElement';
  3. /**
  4. * HTML Label Element.
  5. *
  6. * Reference:
  7. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement.
  8. */
  9. export default interface IHTMLLabelElement extends IHTMLElement {
  10. readonly control: IHTMLElement;
  11. readonly form: IHTMLFormElement;
  12. htmlFor: string;
  13. }