UNPKG

slidev-builder-mcp-v2-protected

Version:

Professional Slidev presentation builder with Git Guardian protection, component library, and AI-powered features. Never lose your presentation work again!

18 lines (17 loc) 398 B
export interface CreateDeckArgs { title: string; template?: string; theme?: string; outputPath: string; options?: { includeInteractiveComponents?: boolean; pythonIntegration?: boolean; customCSS?: string; }; } export declare function createDeck(args: CreateDeckArgs): Promise<{ content: { type: string; text: string; }[]; }>;