@gohcltech/bitbucket-mcp
Version:
Bitbucket integration for Claude via Model Context Protocol
32 lines • 1.33 kB
TypeScript
/**
* @fileoverview Barrel export for pull request types and schemas.
*
* This module provides a centralized export point for all pull request-related
* types and schemas. It enables clean imports throughout the codebase by
* re-exporting everything from the pull request domain module.
*
* Import patterns:
* ```typescript
* // Import specific types
* import { PullRequest, Comment } from '@/types/pull-request';
*
* // Import validation schemas
* import { PullRequestSchema, CreatePullRequestInputSchema } from '@/types/pull-request';
*
* // Import everything
* import * as PullRequestTypes from '@/types/pull-request';
* ```
*
* Exported items:
* - PullRequest interface: TypeScript type for pull request entities
* - Comment interface: TypeScript type for pull request comments
* - PullRequestSchema: Zod schema for pull request API response validation
* - CommentSchema: Zod schema for comment API response validation
* - PullRequestInputSchema: Schema for pull request tool parameters
* - CreatePullRequestInputSchema: Schema for pull request creation
* - ListPullRequestsInputSchema: Schema for pull request listing with filters
* - CommentInputSchema: Schema for comment creation and management
*/
export * from './types.js';
export * from './schemas.js';
//# sourceMappingURL=index.d.ts.map