(props: Record<string, number | string>)
| 575 | // ── Render (human) ─────────────────────────────────────────────────────────── |
| 576 | |
| 577 | function fmtProps(props: Record<string, number | string>): string { |
| 578 | return Object.entries(props) |
| 579 | .filter(([k]) => k !== "ease") |
| 580 | .map(([k, v]) => `${k}:${v}`) |
| 581 | .join(" "); |
| 582 | } |
| 583 | |
| 584 | function printTween(t: SurfacedTween): void { |
| 585 | const timing = c.dim(`@${t.start}s→${t.end}s (${t.duration}s)`); |
no test coverage detected