@nextcloud/dialogs
    Preparing search index...

    Interface HTMLCollectionBase

    The HTMLCollection interface represents a generic collection (array-like object similar to Functions/arguments) of elements (in document order) and offers methods and properties for selecting from the list.

    MDN Reference

    interface HTMLCollectionBase {
        length: number;
        item(index: number): null | Element;
        [index: number]: Element;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The HTMLCollection.length property returns the number of items in a HTMLCollection.

    MDN Reference

    Methods

    • The HTMLCollection method item() returns the element located at the specified offset into the collection.

      MDN Reference

      Parameters

      • index: number

      Returns null | Element