KC's Workspace
    Preparing search index...

    Interface ContainerRule<D, M>

    A @container rule.

    interface ContainerRule<D = Declaration, M = MediaQuery> {
        condition: ContainerCondition<D>;
        loc: Location2;
        name?: string | null;
        rules: Rule<D, M>[];
    }

    Type Parameters

    Index

    Properties

    condition: ContainerCondition<D>

    The container condition.

    The location of the rule in the source file.

    name?: string | null

    The name of the container.

    rules: Rule<D, M>[]

    The rules within the @container rule.