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!

17 lines (16 loc) 368 B
export interface ExportDeckArgs { deckPath: string; format: 'pdf' | 'html' | 'spa' | 'pptx'; outputPath: string; options?: { withClicks?: boolean; range?: string; dark?: boolean; }; } export declare function exportDeck(args: ExportDeckArgs): Promise<{ content: { type: string; text: string; }[]; }>;