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!

26 lines (25 loc) 697 B
export interface GenerateChartArgs { chartType: 'bar' | 'line' | 'scatter' | 'pie' | 'heatmap' | 'custom'; data: { labels?: string[]; values?: number[]; x?: number[]; y?: number[]; datasets?: Array<{ label: string; data: number[]; backgroundColor?: string | string[]; borderColor?: string | string[]; }>; }; pythonScript?: string; outputPath: string; styling?: { colorScheme?: string; width?: number; height?: number; theme?: string; title?: string; }; } export declare function generateChart(args: GenerateChartArgs): Promise<any>;