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>NamedNodeMap

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 NamedNodeMap
import { type NamedNodeMap } from "https://deno.land/x/windmill@v1.345.2/node_modules/evt/lib/types/lib.dom.d.ts";

A collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.

Index Signatures

[index: number]: Attr

Properties

readonly
length: number

Methods

getNamedItem(qualifiedName: string): Attr | null
getNamedItemNS(namespace: string | null, localName: string): Attr | null
item(index: number): Attr | null
removeNamedItem(qualifiedName: string): Attr
removeNamedItemNS(namespace: string | null, localName: string): Attr
setNamedItem(attr: Attr): Attr | null
setNamedItemNS(attr: Attr): Attr | null