@nextcloud/dialogs
    Preparing search index...

    Interface CSSRuleList

    A CSSRuleList represents an ordered collection of read-only CSSRule objects.

    MDN Reference

    interface CSSRuleList {
        length: number;
        item(index: number): null | CSSRule;
        [index: number]: CSSRule;
    }

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The length property of the CSSRuleList interface returns the number of CSSRule objects in the list.

    MDN Reference

    Methods

    • The item() method of the CSSRuleList interface returns the CSSRule object at the specified index or null if the specified index doesn't exist.

      MDN Reference

      Parameters

      • index: number

      Returns null | CSSRule