@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
13 lines (12 loc) • 418 B
TypeScript
import { UpdateWikiPageSchema } from './schema';
import { z } from 'zod';
/**
* Options for updating a wiki page
*/
export type UpdateWikiPageOptions = z.infer<typeof UpdateWikiPageSchema>;
/**
* Updates a wiki page in Azure DevOps
* @param options - The options for updating the wiki page
* @returns The updated wiki page
*/
export declare function updateWikiPage(options: UpdateWikiPageOptions): Promise<any>;