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

IHTMLButtonElement.d.ts 306 B

123456789101112
  1. import IHTMLElement from '../html-element/IHTMLElement';
  2. /**
  3. * HTML Button Element.
  4. *
  5. * Reference:
  6. * https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement.
  7. */
  8. export default interface IHTMLButtonElement extends IHTMLElement {
  9. type: string;
  10. disabled: boolean;
  11. value: string;
  12. }