UNPKG

@gohcltech/bitbucket-mcp

Version:

Bitbucket integration for Claude via Model Context Protocol

33 lines 1.33 kB
/** * @fileoverview Barrel export for issue types and schemas. * * This module provides a centralized export point for all issue tracking-related * types and schemas. It enables clean imports throughout the codebase by * re-exporting everything from the issue domain module. * * Import patterns: * ```typescript * // Import specific types * import { Issue, IssueComment, IssueState } from '@/types/issue'; * * // Import validation schemas * import { IssueInputSchema, CreateIssueInputSchema } from '@/types/issue'; * * // Import everything * import * as IssueTypes from '@/types/issue'; * ``` * * Exported items: * - IssueState, IssueKind, IssuePriority: Type unions for issue categorization * - Content, User, Component, Milestone, Version: Supporting entity interfaces * - Issue interface: TypeScript type for issue entities * - IssueComment interface: TypeScript type for issue comments * - IssueStateSchema, IssueKindSchema, IssuePrioritySchema: Enum validation schemas * - ContentSchema, UserSchema: Entity validation schemas * - IssueInputSchema: Schema for issue tool parameters * - CreateIssueInputSchema: Schema for issue creation * - ListIssuesInputSchema: Schema for issue listing with filters */ export * from './types.js'; export * from './schemas.js'; //# sourceMappingURL=index.d.ts.map