Skip to main content
Module

x/evt/mod.ts>dom.NodeListOf

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.NodeListOf
implements NodeList
import { type dom } from "https://deno.land/x/evt@v2.4.6/mod.ts";
const { NodeListOf } = dom;

Type Parameters

TNode extends Node

Index Signatures

[index: number]: TNode

Properties

length: number

Methods

item(index: number): TNode
forEach(callbackfn: (
value: TNode,
key: number,
parent: NodeListOf<TNode>,
) => void
, thisArg?: any
): void

Performs the specified action for each node in an list.