KC's Workspace
    Preparing search index...

    Interface ScopeRule<D, M>

    A @scope rule.

    () [to ()]? { }

    interface ScopeRule<D = Declaration, M = MediaQuery> {
        loc: Location2;
        rules: Rule<D, M>[];
        scopeEnd?: SelectorList | null;
        scopeStart?: SelectorList | null;
    }

    Type Parameters

    Index

    Properties

    The location of the rule in the source file.

    rules: Rule<D, M>[]

    Nested rules within the @scope rule.

    scopeEnd?: SelectorList | null

    A selector list used to identify any scoping limits.

    scopeStart?: SelectorList | null

    A selector list used to identify the scoping root(s).