Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TouchList

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.

interface TouchList {
[index: number]: Touch;
readonly length: number;
[[Symbol.iterator]](): IterableIterator<Touch>;
item(index: number): Touch | null;
}
var TouchList: {
prototype: TouchList;
new (): TouchList;
}
;

§Index Signatures

§
[index: number]: Touch

§Properties

§
readonly length: number
[src]

§Methods

§
[[Symbol.iterator]](): IterableIterator<Touch>
[src]
§
item(index: number): Touch | null
[src]