KC's Workspace
    Preparing search index...

    Interface MediaRule<D, M>

    A @media rule.

    interface MediaRule<D = Declaration, M = MediaQuery> {
        loc: Location2;
        query: MediaList<M>;
        rules: Rule<D, M>[];
    }

    Type Parameters

    Index

    Properties

    Properties

    The location of the rule in the source file.

    query: MediaList<M>

    The media query list.

    rules: Rule<D, M>[]

    The rules within the @media rule.