mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-05 00:56:23 +00:00
13 lines
551 B
TypeScript
13 lines
551 B
TypeScript
import type { Example } from "./_examples.js";
|
|
import { createInspectCommand } from "./layout.js";
|
|
|
|
export const examples: Example[] = [
|
|
["Inspect visual layout across the current composition", "hyperframes inspect"],
|
|
["Inspect a specific project", "hyperframes inspect ./my-video"],
|
|
["Output agent-readable JSON", "hyperframes inspect --json"],
|
|
["Use explicit hero-frame timestamps", "hyperframes inspect --at 1.5,4.0,7.25"],
|
|
["Run the compatibility alias", "hyperframes layout --json"],
|
|
];
|
|
|
|
export default createInspectCommand("inspect");
|