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) • 456 B
TypeScript
export interface AddComponentArgs {
deckPath: string;
slideNumber?: number;
componentName: string;
parameters: Record<string, any>;
position?: {
x: number;
y: number;
};
styling?: {
width?: number;
height?: number;
className?: string;
};
}
export declare function addComponent(args: AddComponentArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;