MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / printAnime

Function printAnime

packages/cli/src/commands/keyframes.ts:827–835  ·  view source on GitHub ↗
(anime: SurfacedAnimeAnimation)

Source from the content-addressed store, hash-verified

825}
826
827function printAnime(anime: SurfacedAnimeAnimation): void {
828 const targets = anime.targets.length ? anime.targets.join(", ") : "(targets not parsed)";
829 const durations = anime.durations.length ? ` duration ${anime.durations.join(",")}` : "";
830 const registered = anime.registered ? "registered" : "not registered";
831 console.log(
832 ` ${c.accent(`anime.${anime.kind}`)}${c.dim(` ${registered}`)} ${c.dim(`${targets}${durations}`)}`,
833 );
834 console.log();
835}
836
837// ── Command ──────────────────────────────────────────────────────────────────
838

Callers 1

printCompositionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected