KC's Workspace
    Preparing search index...

    Interface StyleRule<D, M>

    A CSS style rule.

    interface StyleRule<D = Declaration, M = MediaQuery> {
        declarations?: DeclarationBlock<D>;
        loc: Location2;
        rules?: Rule<D, M>[];
        selectors: SelectorList;
    }

    Type Parameters

    Index

    Properties

    declarations?: DeclarationBlock<D>

    The declarations within the style rule.

    The location of the rule in the source file.

    rules?: Rule<D, M>[]

    Nested rules within the style rule.

    selectors: SelectorList

    The selectors for the style rule.