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!

23 lines (22 loc) 629 B
export interface CreateComponentArgs { name: string; category: 'charts' | 'shapes' | 'layouts' | 'interactions' | 'frameworks'; author: string; description: string; scope: 'hatch' | 'community'; parameters?: ComponentParameter[]; } export interface ComponentParameter { name: string; type: 'string' | 'number' | 'boolean' | 'enum' | 'array' | 'object'; required: boolean; default?: any; options?: string[]; description?: string; } export declare function createComponent(args: CreateComponentArgs): Promise<{ content: { type: string; text: string; }[]; }>;