@nextcloud/dialogs
    Preparing search index...

    Interface CSSNumericArray

    The CSSNumericArray interface of the CSS Typed Object Model API contains a list of CSSNumericValue objects.

    MDN Reference

    interface CSSNumericArray {
        length: number;
        forEach(
            callbackfn: (
                value: CSSNumericValue,
                key: number,
                parent: CSSNumericArray,
            ) => void,
            thisArg?: any,
        ): void;
        [index: number]: CSSNumericValue;
    }

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    The read-only length property of the An integer representing the number of CSSNumericValue objects in the list.

    MDN Reference

    Methods

    • Parameters

      Returns void