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!

22 lines (21 loc) 546 B
export interface CreateSlideArgs { deckPath: string; slideType: 'title' | 'content' | 'two-column' | 'image' | 'chart' | 'interactive' | 'custom'; content: { title?: string; subtitle?: string; body?: string; leftColumn?: string; rightColumn?: string; image?: string; chart?: string; }; layout?: string; position?: number; } export declare function createSlide(args: CreateSlideArgs): Promise<{ content: { type: string; text: string; }[]; }>;