UNPKG

vibe-tools

Version:
13 lines (12 loc) 479 B
import type { Command, CommandGenerator, CommandOptions } from '../../types'; interface YouTubeCommandOptions extends CommandOptions { type?: 'summary' | 'transcript' | 'plan' | 'review' | 'custom'; duration?: 'short' | 'medium' | 'full'; format?: 'markdown' | 'json' | 'text'; } export declare class YouTubeCommand implements Command { private config; constructor(); execute(query: string, options: YouTubeCommandOptions): CommandGenerator; } export {};