import IHTMLCollection from './IHTMLCollection'; import INode from '../node/INode'; /** * Class list. */ export default class HTMLCollection extends Array implements IHTMLCollection { /** * Returns item by index. * * @param index Index. */ item(index: number): INode; }