UNPKG

claude-code-emacs-mcp-server

Version:

MCP server for Claude Code Emacs integration

24 lines 734 B
import { z } from 'zod'; export declare const describeSymbolInputSchema: z.ZodObject<{ file: z.ZodString; line: z.ZodNumber; symbol: z.ZodString; }, "strip", z.ZodTypeAny, { symbol: string; line: number; file: string; }, { symbol: string; line: number; file: string; }>; export declare const describeSymbolOutputSchema: z.ZodObject<{ documentation: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { documentation?: string | undefined; }, { documentation?: string | undefined; }>; export type DescribeSymbolArgs = z.infer<typeof describeSymbolInputSchema>; export type DescribeSymbolResult = z.infer<typeof describeSymbolOutputSchema>; //# sourceMappingURL=describe-schema.d.ts.map