stereoframe-runtime 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ease.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Easing functions with GSAP-compatible names so the markup vocabulary
3
+ * matches what LLMs already know from GSAP ("power2.inOut", "back.out", …).
4
+ * All are pure p∈[0,1] → value functions (Penner equations).
5
+ */
6
+ export type EaseFn = (p: number) => number;
7
+ /** Resolves an ease name; unknown names fall back to the given default. */
8
+ export declare function getEase(name: string | null, fallback?: string): EaseFn;
9
+ export declare const EASE_NAMES: string[];