Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
type alias EasingFunction
import { type EasingFunction } from "https://deno.land/x/frugal@0.9.6/dep/lightningcss.ts";
definition:
| { type: "linear"; }
| { type: "ease"; }
| { type: "ease-in"; }
| { type: "ease-out"; }
| { type: "ease-in-out"; }
| { type: "cubic-bezier"; x1: number; x2: number; y1: number; y2: number; }
| { count: number; position?: StepPosition; type: "steps"; }