claude-code-emacs-mcp-server
Version:
MCP server for Claude Code Emacs integration
24 lines • 782 B
TypeScript
import { z } from 'zod';
export declare const sendNotificationInputSchema: z.ZodObject<{
title: z.ZodString;
message: z.ZodString;
}, "strip", z.ZodTypeAny, {
message: string;
title: string;
}, {
message: string;
title: string;
}>;
export declare const sendNotificationOutputSchema: z.ZodObject<{
status: z.ZodEnum<["success", "error"]>;
message: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
status: "error" | "success";
message?: string | undefined;
}, {
status: "error" | "success";
message?: string | undefined;
}>;
export type NotificationArgs = z.infer<typeof sendNotificationInputSchema>;
export type NotificationResult = z.infer<typeof sendNotificationOutputSchema>;
//# sourceMappingURL=notification-schema.d.ts.map