Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>NodeList

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface NodeList
import { type NodeList } from "https://deno.land/x/windmill@v1.345.2/node_modules/evt/lib/types/lib.dom.d.ts";

NodeList objects are collections of nodes, usually returned by properties such as Node.childNodes and methods such as document.querySelectorAll().

Index Signatures

[index: number]: Node

Properties

readonly
length: number

Returns the number of nodes in the collection.

Methods

item(index: number): Node | null

Returns the node with index index from the collection. The nodes are sorted in tree order.

forEach(callbackfn: (
value: Node,
key: number,
parent: NodeList,
) => void
, thisArg?: any
): void

Performs the specified action for each node in an list.