Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
type alias MediaFeatureValue
import { type MediaFeatureValue } from "https://deno.land/x/frugal@0.9.6/dep/lightningcss.ts";

media feature value within a media query.

See MediaFeature.

definition:
| { type: "length"; value: Length; }
| { type: "number"; value: number; }
| { type: "integer"; value: number; }
| { type: "boolean"; value: boolean; }
| { type: "resolution"; value: Resolution; }
| { type: "ratio"; value: Ratio; }
| { type: "ident"; value: String; }
| { type: "env"; value: EnvironmentVariable; }