(parsed: ParsedHtml)
| 18 | * The compositionId generation instability itself is tracked as R1 (stable hf- ids). |
| 19 | */ |
| 20 | export function serialize(parsed: ParsedHtml): string { |
| 21 | return generateHyperframesHtml(parsed.elements, maxEndTime(parsed.elements), { |
| 22 | compositionId: "test-comp", |
| 23 | resolution: parsed.resolution, |
| 24 | styles: parsed.styles ?? undefined, |
| 25 | keyframes: parsed.keyframes, |
| 26 | stageZoomKeyframes: parsed.stageZoomKeyframes, |
| 27 | }); |
| 28 | } |
no test coverage detected