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

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

A type returned by some APIs which contains a list of DOMString (strings).

Index Signatures

[index: number]: string

Properties

readonly
length: number

Returns the number of strings in strings.

Methods

contains(string: string): boolean

Returns true if strings contains string, and false otherwise.

item(index: number): string | null

Returns the string with index index from strings.