hatch-slidev-builder-mcp
Version:
A comprehensive MCP server for creating Slidev presentations with component library, interactive elements, and team collaboration features
17 lines (16 loc) • 368 B
TypeScript
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;
}[];
}>;