UNPKG

structure-validation

Version:

A Node.js CLI tool for validating codebase folder and file structure using a clean declarative configuration. Part of the guardz ecosystem for comprehensive TypeScript development.

23 lines 609 B
import { ValidationResult } from '../../domain/types/validation.types'; /** * Infrastructure service for formatting validation output */ export declare class OutputFormatter { /** * Format validation result for CLI output */ formatResult(result: ValidationResult): string; /** * Format a validation error */ private formatError; /** * Format a validation suggestion */ private formatSuggestion; /** * Format a summary of the validation */ formatSummary(result: ValidationResult): string; } //# sourceMappingURL=OutputFormatter.d.ts.map