#!/usr/bin/env node /** * Dispatch table for `vclaw video ` — the single source of truth * for which subcommands exist and which handler each runs. Backwards-compat * aliases (e.g. `plan`/`execution-plan`, `execute`/`produce`, * `template-save`/`template-create`, `clone-execute`/`clone-ad`, * `analyze`/`analyze-template`, `director-preflight`/`preflight`) are plain extra * keys pointing at the same handler — data, not branches. A handler that * ignores its `rest` argument (the no-arg list handlers) is still assignable. */ type VideoSubcommandHandler = (rest: string[]) => Promise; export declare const VIDEO_DISPATCH: Record; export declare function main(): Promise; export {}; //# sourceMappingURL=vclaw.d.ts.map