A CSSRuleList is an (indirect-modify only) array-like object containing an ordered collection of CSSRule objects.

MDN Reference

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

Indexable

Properties

Methods

Properties

length: number

Methods