@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
11 lines (10 loc) • 439 B
TypeScript
import { WebApi } from 'azure-devops-node-api';
import { GetWorkItemCommentsOptions, CommentList } from '../types';
/**
* Get comments for a work item
*
* @param connection The Azure DevOps WebApi connection
* @param options Options for getting work item comments
* @returns The list of work item comments
*/
export declare function getWorkItemComments(connection: WebApi, options: GetWorkItemCommentsOptions): Promise<CommentList>;