@nextcloud/dialogs
    Preparing search index...

    Interface TouchList

    The TouchList interface represents a list of contact points on a touch surface.

    MDN Reference

    interface TouchList {
        length: number;
        item(index: number): null | Touch;
        [index: number]: Touch;
    }

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The length read-only property indicates the number of items (touch points) in a given TouchList.

    MDN Reference

    Methods

    • The item() method returns the Touch object at the specified index in the TouchList.

      MDN Reference

      Parameters

      • index: number

      Returns null | Touch