UNPKG

growi-mcp-server

Version:

MCP Server for GROWI - a modern Wiki system

17 lines (16 loc) 454 B
import { z } from 'zod'; import { GrowiClient } from '../growi-client.js'; export declare const pageExistsSchema: z.ZodObject<{ path: z.ZodString; }, "strip", z.ZodTypeAny, { path: string; }, { path: string; }>; export type PageExistsParams = z.infer<typeof pageExistsSchema>; export declare function pageExists(client: GrowiClient, params: PageExistsParams): Promise<{ content: { type: string; text: string; }[]; }>;