/// /// interface IEHtml extends HTMLSelectElement, HTMLTextAreaElement, HTMLInputElement { /** * * @param eventType * @param callback */ attachEvent(eventType: 'onclick' | 'onchange' | 'onload', callback: any): any; } interface HTMLCollectionOfHTMLFormElement extends HTMLCollectionOf { getElementsByTagName(tag: string): HTMLCollection; }