@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
10 lines (9 loc) • 345 B
TypeScript
import { WorkItem } from '../types';
/**
* Standard work item fixture for tests
*/
export declare const createWorkItemFixture: (id: number, title?: string, state?: string, assignedTo?: string) => WorkItem;
/**
* Create a collection of work items for list tests
*/
export declare const createWorkItemsFixture: (count?: number) => WorkItem[];