linkedom
Version:
A triple-linked lists based DOM implementation
17 lines (16 loc) • 445 B
TypeScript
/**
* @implements globalThis.HTMLInputElement
*/
export class HTMLInputElement extends HTMLElement implements globalThis.HTMLInputElement {
set autofocus(arg: any);
get autofocus(): any;
set disabled(arg: any);
get disabled(): any;
set name(arg: any);
get name(): any;
set placeholder(arg: any);
get placeholder(): any;
set type(arg: any);
get type(): any;
}
import { HTMLElement } from "./element.js";