@nextcloud/dialogs
    Preparing search index...

    Interface StyleSheetList

    The StyleSheetList interface represents a list of CSSStyleSheet objects.

    MDN Reference

    interface StyleSheetList {
        length: number;
        item(index: number): null | CSSStyleSheet;
        [index: number]: CSSStyleSheet;
    }

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The length read-only property of the StyleSheetList interface returns the number of CSSStyleSheet objects in the collection.

    MDN Reference

    Methods

    • The item() method of the StyleSheetList interface returns a single CSSStyleSheet object.

      MDN Reference

      Parameters

      • index: number

      Returns null | CSSStyleSheet