Skip to main content
Module

x/evt/lib/types/index.ts>dom.TouchList

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.TouchList
import { type dom } from "https://deno.land/x/evt@v2.4.13/lib/types/index.ts";
const { TouchList } = dom;

A list of contact points on a touch surface. For example, if the user has three fingers on the touch surface (such as a screen or trackpad), the corresponding TouchList object would have one Touch object for each finger, for a total of three entries.

Index Signatures

[index: number]: Touch

Properties

readonly
length: number

Methods

item(index: number): Touch | null