UNPKG

deepsource-mcp-server

Version:
12 lines (10 loc) 438 B
/** * @fileoverview Value objects for the domain layer * * This module exports all value objects used throughout the domain layer. * Value objects encapsulate domain concepts and provide type safety and validation. */ export { ThresholdValue } from './threshold-value.js'; export { MetricValue } from './metric-value.js'; export { IssueCount } from './issue-count.js'; export { CoveragePercentage } from './coverage-percentage.js';