KC's Workspace
    Preparing search index...

    A @import rule.

    interface ImportRule<M = MediaQuery> {
        layer?: string[] | null;
        loc: Location2;
        media?: MediaList<M>;
        supports?: SupportsCondition | null;
        url: string;
    }

    Type Parameters

    Index

    Properties

    layer?: string[] | null

    An optional cascade layer name, or None for an anonymous layer.

    The location of the rule in the source file.

    media?: MediaList<M>

    A media query.

    supports?: SupportsCondition | null

    An optional supports() condition.

    url: string

    The url to import.