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 ApplyThemeArgs {
deckPath: string;
theme: string;
customizations?: {
primaryColor?: string;
secondaryColor?: string;
fontFamily?: string;
customCSS?: string;
};
}
export declare function applyTheme(args: ApplyThemeArgs): Promise<{
content: {
type: string;
text: string;
}[];
}>;