UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

10 lines (9 loc) 253 B
/** * @implements globalThis.NodeList */ export class NodeList extends Array<any> implements globalThis.NodeList { constructor(arrayLength?: number); constructor(arrayLength: number); constructor(...items: any[]); item(i: any): any; }