()
| 283 | } |
| 284 | |
| 285 | function parseTimelineData(): { id: string; label: string; tweens: GsapAnimation[] }[] { |
| 286 | if (!comp) return []; |
| 287 | const script = gsapScriptOf(comp.serialize()); |
| 288 | if (!script) return []; |
| 289 | return groupAnimationsById(parseGsapScriptAcorn(script).animations); |
| 290 | } |
| 291 | |
| 292 | /** Prefer element-level timing attrs (written by setTiming) over the GSAP parse. */ |
| 293 | function computeTiming( |
no test coverage detected