Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
type alias NumberOrPercentage
import { type NumberOrPercentage } from "https://deno.land/x/frugal@0.9.6/dep/lightningcss.ts";

Either a <number> or <percentage>.

definition: { type: "percentage"; value: number; } | { type: "number"; value: number; }