@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
11 lines (10 loc) • 490 B
TypeScript
import { z } from 'zod';
import { CreateWikiPageSchema } from './schema';
/**
* Creates a new wiki page in Azure DevOps.
* If a page already exists at the specified path, it will be updated.
*
* @param {z.infer<typeof CreateWikiPageSchema>} params - The parameters for creating the wiki page.
* @returns {Promise<any>} A promise that resolves with the API response.
*/
export declare const createWikiPage: (params: z.infer<typeof CreateWikiPageSchema>, client?: any) => Promise<any>;